[
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, the server will not be able to response to any messages while all
exceptions are simply being ignored.
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, the server will not be able to response to any messages while all
exceptions are simply being ignored{{.}}
> 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, the server will not be able to response to any messages while all
> exceptions are simply being ignored.
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)