chesnokoff commented on code in PR #12511:
URL: https://github.com/apache/ignite/pull/12511#discussion_r2533000337
##########
modules/compatibility/src/test/java/org/apache/ignite/compatibility/testframework/plugins/TestCompatibilityPluginProvider.java:
##########
@@ -105,7 +105,14 @@ public class TestCompatibilityPluginProvider implements
PluginProvider {
/** {@inheritDoc} */
@Nullable @Override public Object createComponent(PluginContext ctx, Class
cls) {
if (DiscoveryNodeValidationProcessor.class == cls)
- return new DisabledValidationProcessor(kCtx);
+ try {
+
Class.forName("org.apache.ignite.internal.processors.rollingupgrade.RollingUpgradeProcessor");
+
+ return new DisabledRollingUpgradeProcessor(kCtx);
+ }
Review Comment:
`org.apache.ignite.compatibility.persistence.SnapshotCompatibilityTest#testSnapshotRestore`
will fail otherwise because `ctx.rollingUpgrade()` will be null
testSnapshotRestore tries to run snapshots on 2.17.0 but cannot find
RollingUpgradeProcessor in class path
--
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]