PakhomovAlexander commented on code in PR #1662:
URL: https://github.com/apache/ignite-3/pull/1662#discussion_r1104792713


##########
modules/client/src/main/java/org/apache/ignite/internal/client/io/netty/NettyClientConnectionMultiplexer.java:
##########
@@ -75,6 +94,77 @@ public void initChannel(SocketChannel ch) {
         }
     }
 
+    private void setupSsl(SocketChannel ch, IgniteClientConfiguration 
clientCfg) {
+        if (clientCfg.sslConfiguration() == null || 
!clientCfg.sslConfiguration().enabled()) {
+            return;
+        }
+
+        try {
+            var ssl = clientCfg.sslConfiguration();

Review Comment:
   ok, will fix that too



-- 
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]

Reply via email to