rpuch commented on code in PR #2850:
URL: https://github.com/apache/ignite-3/pull/2850#discussion_r1403250496


##########
modules/network/src/main/java/org/apache/ignite/internal/network/recovery/RecoveryClientHandshakeManager.java:
##########
@@ -74,7 +76,13 @@ public class RecoveryClientHandshakeManager implements 
HandshakeManager {
     private final short connectionId;
 
     /** Handshake completion future. */
-    private final CompletableFuture<NettySender> handshakeCompleteFuture = new 
CompletableFuture<>();
+    private final CompletableFuture<NettySender> localHandshakeCompleteFuture 
= new CompletableFuture<>();
+
+    /**
+     * Master future used to complete the handshake either with the results of 
this handshake of the competing one
+     * (in the opposite direction), if it wins.
+     */
+    private final CompletableFuture<CompletionStage<NettySender>> 
masterHandshakeCompleteFuture = new CompletableFuture<>();

Review Comment:
   Changed it to `resulting`



-- 
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]

Reply via email to