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


##########
modules/network/src/main/java/org/apache/ignite/internal/network/recovery/RecoveryInitiatorHandshakeManager.java:
##########
@@ -310,7 +310,9 @@ private boolean 
possiblyRejectHandshakeStart(HandshakeStartMessage message) {
             return true;
         }
 
-        if (staleIdDetector.isIdStale(message.serverNode().id())) {
+        boolean isStale = staleIdDetector.isIdStale(message.serverNode().id());
+        LOG.info("Is stale? {}: {}", message.serverNode().id(), isStale);
+        if (isStale) {

Review Comment:
   I removed this logging



##########
modules/network/src/main/java/org/apache/ignite/internal/network/recovery/RecoveryInitiatorHandshakeManager.java:
##########
@@ -310,7 +310,9 @@ private boolean 
possiblyRejectHandshakeStart(HandshakeStartMessage message) {
             return true;
         }
 
-        if (staleIdDetector.isIdStale(message.serverNode().id())) {
+        boolean isStale = staleIdDetector.isIdStale(message.serverNode().id());
+        LOG.info("Is stale? {}: {}", message.serverNode().id(), isStale);

Review Comment:
   I removed this logging



-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to