diff --git a/pinot-common/src/main/java/org/apache/pinot/common/utils/tls/RenewableTlsUtils.java b/pinot-common/src/main/java/org/apache/pinot/common/utils/tls/RenewableTlsUtils.java index 47966aec0eb7..ba5780fc97de 100644 --- a/pinot-common/src/main/java/org/apache/pinot/common/utils/tls/RenewableTlsUtils.java +++ b/pinot-common/src/main/java/org/apache/pinot/common/utils/tls/RenewableTlsUtils.java @@ -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; } });