rpuch commented on code in PR #1978:
URL: https://github.com/apache/ignite-3/pull/1978#discussion_r1181079018
##########
modules/network/src/main/java/org/apache/ignite/internal/network/netty/HandshakeHandler.java:
##########
@@ -67,7 +67,13 @@ public void handlerAdded(ChannelHandlerContext ctx) {
/** {@inheritDoc} */
@Override
public void channelActive(ChannelHandlerContext ctx) {
- manager.onConnectionOpen();
+ try {
+ manager.onConnectionOpen();
+ } catch (RuntimeException | AssertionError e) {
+ LOG.error("Error in onConnectionOpen()", e);
Review Comment:
Fixed as you suggested
--
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]