You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Aleksandr Polovtcev (Jira)" <ji...@apache.org> on 2021/06/02 17:50:00 UTC

[jira] [Created] (IGNITE-14819) NettyServer supresses exceptions from the HandshakeManager

Aleksandr Polovtcev created IGNITE-14819:
--------------------------------------------

             Summary: NettyServer supresses exceptions from the HandshakeManager
                 Key: IGNITE-14819
                 URL: https://issues.apache.org/jira/browse/IGNITE-14819
             Project: Ignite
          Issue Type: Bug
          Components: networking
            Reporter: Aleksandr Polovtcev
            Assignee: Aleksandr Polovtcev
             Fix For: 3.0.0-alpha3


{{NettyServer#start}} contains the following code:



 
{code:java}
handshakeManager.handshakeFuture().whenComplete((sender, throwable) -> {
    if (sender != null)
        newConnectionListener.accept(sender);
});
{code}
If the handshake fails, for example, because of a missing serialization factory, {{serverStartFuture}} will never complete.

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)