wernerdv commented on code in PR #13491:
URL: https://github.com/apache/ignite/pull/13491#discussion_r3878520364


##########
modules/compatibility/src/test/java/org/apache/ignite/compatibility/testframework/plugins/TestCompatibilityPluginProvider.java:
##########
@@ -34,14 +34,29 @@
 import org.apache.ignite.plugin.PluginValidationException;
 import org.jetbrains.annotations.Nullable;
 
-/**
- * Creates {@link DisabledValidationProcessor} to allow for nodes with 
different
- * versions {@link IgniteNodeAttributes#ATTR_BUILD_VER} join to topology.
- */
+/** Provides node validation for compatibility tests. */
 public class TestCompatibilityPluginProvider implements PluginProvider {
     /** */
     private GridKernalContext kCtx;
 
+    /** Rolling upgrade support flag. */
+    private boolean rollingUpgradeSupported;
+
+    /** Auto-enable rolling upgrade flag. */
+    private final boolean autoEnableRollingUpgrade;
+
+    /** */
+    public TestCompatibilityPluginProvider() {
+        this(false);
+    }
+
+    /**
+     * @param autoEnableRollingUpgrade Auto-enable rolling upgrade flag.
+     */

Review Comment:
   ```suggestion
       /** @param autoEnableRollingUpgrade Auto-enable rolling upgrade flag. */
   ```



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