spuru9 commented on code in PR #28553:
URL: https://github.com/apache/flink/pull/28553#discussion_r3506606520
##########
flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java:
##########
@@ -96,7 +112,16 @@ public static SocketFactory
createSSLClientSocketFactory(Configuration config)
throw new IllegalConfigurationException("SSL is not enabled");
}
- return sslContext.getSocketFactory();
+ String[] protocols = getEnabledProtocols(config);
+ String[] cipherSuites = getEnabledCipherSuites(config);
+
+ debugSslProtocolAndCiphers(
+ "[SSL-DIAG][internal-client-socket] {}: {}",
Review Comment:
same here and other places.
--
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]