demery-pivotal opened a new pull request #7475:
URL: https://github.com/apache/geode/pull/7475


   PROBLEM
   
   On JDK 17, `SslSocket.startHandshake()` can throw
   `SSLHandshakeException` in circumstances where JDK 8 and 11 would throw
   `SocketException`.
   
   `SocketCreator.configureClientSSLSocket()` catches this exception, logs it 
as fatal, and rethrows it.
   
   `ConnectionFactoryImpl.createClientToServerConnection()` then catches it and 
logs it as a warning.
   
   This results in lots of warn/fatal log statements for occurrences that,
   on JDK 8 and 11, would result in debug logs.
   
   SOLUTION
   
   Change `SocketCreator` to not catch the exception.
   
   Change `ConnectionFactoryImpl` to recognize the exception and log it as
   debug.
   


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