You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ( applicationSettings.getIsearch().getRequestTimeout() != null ) {
20
31
log.warn( "The 'rdp.settings.isearch.request-timeout' configuration is deprecated, use 'rdp.settings.isearch.connect-timeout' and 'rdp.settings.isearch.read-timeout' instead." );
if ( isMissingOntologyException( remoteException ) ) {
459
459
// this is producing a 400 Bad Request, but we can safely ignore it and treat it as producing no
460
460
// results
461
-
log.debug( String.format( "Partner API %s is missing some of the requested ontologies: %s", f.getLeft(), remoteException.getMessage() ) );
461
+
log.debug( String.format( "Partner API %s is missing some of the requested ontologies: %s", prepareApiUri( f.getLeft(), false), remoteException.getMessage() ) );
462
462
} else {
463
-
log.warn( String.format( "Failed to retrieve entity from %s : %s", f.getLeft(), ExceptionUtils.getRootCauseMessage( remoteException ) ) );
463
+
log.warn( String.format( "Failed to retrieve entity from %s : %s", prepareApiUri( f.getLeft(), false), ExceptionUtils.getRootCauseMessage( remoteException ) ) );
464
464
}
465
465
}
466
466
}
@@ -511,13 +511,23 @@ private URI getApiUri( URI remoteHost, boolean authenticate ) throws UnknownRemo
0 commit comments