He-Pin commented on issue #1910:
URL: https://github.com/apache/pekko/issues/1910#issuecomment-2993985658

   I did some debugging on Netty's SSLHandler, it works fine.
   ````
               packetLength = getEncryptedPacketLength(in, in.readerIndex(), 
true);
               if (packetLength == SslUtils.NOT_ENCRYPTED) {
                   // Not an SSL/TLS packet
                   NotSslRecordException e = new NotSslRecordException(
                           "not an SSL/TLS record: " + ByteBufUtil.hexDump(in));
                   in.skipBytes(in.readableBytes());
   ```
   And I see the packetLength is always > 0, so I'm not sure how your cluster 
is setting up, it should fail if the SSL handshake is not complete, see:
   
org.apache.pekko.remote.transport.netty.ConfigSSLEngineProvider#createSSLEngine


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to