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:51:00 UTC

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

     [ https://issues.apache.org/jira/browse/IGNITE-14819?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Aleksandr Polovtcev updated IGNITE-14819:
-----------------------------------------
    Description: 
{{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.

 

  was:
{{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.

 


> 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
>            Priority: Major
>             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)