sashapolo commented on code in PR #795:
URL: https://github.com/apache/ignite-3/pull/795#discussion_r878856057


##########
modules/cluster-management/src/main/java/org/apache/ignite/internal/cluster/management/raft/commands/JoinRequestCommand.java:
##########
@@ -17,22 +17,34 @@
 
 package org.apache.ignite.internal.cluster.management.raft.commands;
 
+import org.apache.ignite.internal.cluster.management.ClusterTag;
+import org.apache.ignite.internal.properties.IgniteProductVersion;
 import org.apache.ignite.network.ClusterNode;
 import org.apache.ignite.raft.client.WriteCommand;
+import org.jetbrains.annotations.Nullable;
 
 /**
  * Command sent by a node that intends to join a cluster. This command will 
trigger node validation.
  */
 public class JoinRequestCommand implements WriteCommand {
     private final ClusterNode node;
 
+    private final IgniteProductVersion igniteVersion;
+
+    @Nullable
+    private final ClusterTag clusterTag;

Review Comment:
   This comment is not longer valid, cluster tag is always non-null now



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