nizhikov commented on code in PR #11986: URL: https://github.com/apache/ignite/pull/11986#discussion_r2044236534
########## modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/SnapshotCompatibilityTest.java: ########## @@ -142,19 +135,35 @@ public void setUp() { /** */ @Test public void testSnapshotRestore() throws Exception { + assumeFalse("User must not restore both snapshots and cache dumps simultaneously", incSnp && cacheDump); + + // See <a href="https://issues.apache.org/jira/browse/IGNITE-23222">...</a> + assumeFalse("Restoring incremental snapshots if consistent ID is null is fixed in 2.17.0", incSnp && !customConsId); + + // See <a href="https://issues.apache.org/jira/browse/IGNITE-25096">...</a> + assumeFalse("Restoring incremental snapshots on different topology is unsopported", incSnp && oldNodesCnt == 3); Review Comment: "https://issues.apache.org/jira/browse/IGNITE-25096" ########## modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/SnapshotCompatibilityTest.java: ########## @@ -142,19 +135,35 @@ public void setUp() { /** */ @Test public void testSnapshotRestore() throws Exception { + assumeFalse("User must not restore both snapshots and cache dumps simultaneously", incSnp && cacheDump); + + // See <a href="https://issues.apache.org/jira/browse/IGNITE-23222">...</a> + assumeFalse("Restoring incremental snapshots if consistent ID is null is fixed in 2.17.0", incSnp && !customConsId); + + // See <a href="https://issues.apache.org/jira/browse/IGNITE-25096">...</a> + assumeFalse("Restoring incremental snapshots on different topology is unsopported", incSnp && oldNodesCnt == 3); Review Comment: "Restoring incremental snapshots on different topology is unsopported" -> "https://issues.apache.org/jira/browse/IGNITE-25096" -- 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