NihalJain commented on code in PR #7204:
URL: https://github.com/apache/hbase/pull/7204#discussion_r2262052603
##########
hbase-http/src/main/java/org/apache/hadoop/hbase/http/InfoServer.java:
##########
@@ -104,6 +104,20 @@ public InfoServer(String name, String bindAddress, int
port, boolean findPort,
this.httpServer = builder.build();
}
+ private String getTLSPassword(Configuration c, String postfix) throws
IOException {
+ return HBaseConfiguration.getPassword(c, HBASE_WEB_TLS_CONFIG_PREFIX +
postfix,
+ HBaseConfiguration.getPassword(c, HADOOP_WEB_TLS_CONFIG_PREFIX +
postfix, null));
+ }
+
+ private String getTLSProperty(Configuration c, String postfix) {
+ return getTLSProperty(c, postfix, null);
+ }
+
+ private String getTLSProperty(Configuration c, String postfix, String
defaultValue) {
Review Comment:
ok so we are wrapping these into hbase specific confs with hadoop fallback
nice
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]