jasperjiaguo commented on a change in pull request #7653: URL: https://github.com/apache/pinot/pull/7653#discussion_r741556415
########## File path: pinot-core/src/main/java/org/apache/pinot/core/util/TlsUtils.java ########## @@ -101,23 +112,26 @@ public static TlsConfig extractTlsConfig(PinotConfiguration pinotConfig, String * @return KeyManagerFactory */ public static KeyManagerFactory createKeyManagerFactory(TlsConfig tlsConfig) { - return createKeyManagerFactory(tlsConfig.getKeyStorePath(), tlsConfig.getKeyStorePassword()); + return createKeyManagerFactory(tlsConfig.getKeyStorePath(), + tlsConfig.getKeyStorePassword(), tlsConfig.getKeyStoreType()); } /** * Create a KeyManagerFactory instance for a given path and key password * * @param keyStorePath store path * @param keyStorePassword password - * + * @param keyStoreType keystore type for keystore * @return KeyManagerFactory */ - public static KeyManagerFactory createKeyManagerFactory(String keyStorePath, String keyStorePassword) { + public static KeyManagerFactory createKeyManagerFactory(String keyStorePath, String keyStorePassword, + String keyStoreType) { Preconditions.checkNotNull(keyStorePath, "key store path must not be null"); Preconditions.checkNotNull(keyStorePassword, "key store password must not be null"); + keyStoreType = StringUtils.isBlank(keyStoreType) ? KeyStore.getDefaultType() : keyStoreType; try { - KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType()); + KeyStore keyStore = KeyStore.getInstance(keyStoreType); Review comment: moved default value to constructor of TlsUtils -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org