yongzhi commented on a change in pull request #1580: URL: https://github.com/apache/hive/pull/1580#discussion_r505131640
########## File path: service/src/java/org/apache/hive/service/cli/thrift/ThriftHttpCLIService.java ########## @@ -136,6 +136,12 @@ public void onClosed(Connection connection) { ConfVars.HIVE_SERVER2_SSL_KEYSTORE_PATH.varname + " Not configured for SSL connection"); } + String keyStoreType = hiveConf.getVar(ConfVars.HIVE_SERVER2_SSL_KEYSTORE_TYPE).trim(); + if (keyStoreType.isEmpty()) { + keyStoreType = KeyStore.getDefaultType(); + } + String keyStoreAlgorithm = hiveConf.getVar(ConfVars.HIVE_SERVER2_SSL_KEYSTORE_ALGORITHM).trim(); Review comment: For the MetastoreConf changes in testing because the previous HiveConf metastore related properties are all deprecated, I just switch to the corresponding properties in MetastoreConf ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org