Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,10 @@ private static synchronized void reloadSslFactory(SSLFactory baseSslFactory,
+ "truststore {}) on file", baseSslFactory, keyStorePath, trustStorePath);
return true;
} catch (Exception e) {
LOGGER.info(
LOGGER.warn(
"reloadSslFactory :: Encountered issues when renewing SSLFactory "
+ "{} (built from key store {} and "
+ "truststore {}) on ", baseSslFactory, keyStorePath, trustStorePath, e);
+ "truststore {}), retrying if attempts remain", baseSslFactory, keyStorePath, trustStorePath, e);
return false;
}
});
Expand Down
Loading