This is an automated email from the ASF dual-hosted git repository.

rpuch pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new a8443870d88 IGNITE-26316 Take registration failure cause from correct 
future (#6490)
a8443870d88 is described below

commit a8443870d8863076b690efc9dbf28e53a243a555
Author: Roman Puchkovskiy <[email protected]>
AuthorDate: Tue Aug 26 20:20:28 2025 +0400

    IGNITE-26316 Take registration failure cause from correct future (#6490)
---
 .../ignite/internal/network/handshake/HandshakeEventLoopSwitcher.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/modules/network/src/main/java/org/apache/ignite/internal/network/handshake/HandshakeEventLoopSwitcher.java
 
b/modules/network/src/main/java/org/apache/ignite/internal/network/handshake/HandshakeEventLoopSwitcher.java
index 2d0a4c6c726..cd259c125b8 100644
--- 
a/modules/network/src/main/java/org/apache/ignite/internal/network/handshake/HandshakeEventLoopSwitcher.java
+++ 
b/modules/network/src/main/java/org/apache/ignite/internal/network/handshake/HandshakeEventLoopSwitcher.java
@@ -105,7 +105,7 @@ public class HandshakeEventLoopSwitcher {
                     if (!registrationFuture.isSuccess()) {
                         LOG.error("Cannot register a channel with an event 
loop", registrationFuture.cause());
 
-                        
fut.completeExceptionally(deregistrationFuture.cause());
+                        fut.completeExceptionally(registrationFuture.cause());
 
                         channel.close();
 

Reply via email to