anmolnar commented on a change in pull request #4125: URL: https://github.com/apache/hbase/pull/4125#discussion_r829243045
########## File path: hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcServer.java ########## @@ -181,4 +204,80 @@ public int getNumOpenConnections() { // allChannels also contains the server channel, so exclude that from the count. return channelsCount > 0 ? channelsCount - 1 : channelsCount; } + + private synchronized void initSSL(ChannelPipeline p, boolean supportPlaintext) throws + X509Exception { + SslContext nettySslContext; + + SSLContextAndOptions sslContextAndOptions = x509Util.getDefaultSSLContextAndOptions(); + nettySslContext = sslContextAndOptions + .createNettyJdkSslContext(sslContextAndOptions.getSSLContext(), false); + + if (supportPlaintext) { Review comment: Good point. Yes, we should support it. Let me add a config option. -- 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: issues-unsubscr...@hbase.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org