Skip to content

Commit

Permalink
IGNITE-17026 Added the 2.13 version to compatibility tests (apache#10034
Browse files Browse the repository at this point in the history
)
  • Loading branch information
NSAmelchev authored May 25, 2022
1 parent 832a9e2 commit e042345
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ public enum IgniteReleasedVersion {
VER_2_11_0("2.11.0"),

/** */
VER_2_12_0("2.12.0");
VER_2_12_0("2.12.0"),

/** */
VER_2_13_0("2.13.0");

/** Ignite version. */
private final IgniteProductVersion ver;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ private void testContinuousQueries() throws Exception {
cache.put(0, 1);
cache.remove(0);

assertTrue(GridTestUtils.waitForCondition(() -> allEvts.size() == 3, 1_000L));
assertTrue(GridTestUtils.waitForCondition(() -> allEvts.size() == 3, 10_000L));
}
}

Expand Down Expand Up @@ -445,7 +445,7 @@ private void testServiceDescriptors() {
assertEquals(0, svc.totalCount());
assertEquals(1, svc.maxPerNodeCount());
assertNull(svc.cacheName());
assertEquals(grid(0).localNode().id(), svc.originNodeId());
assertEquals(client.cluster().forServers().node().id(), svc.originNodeId());
assertEquals(PlatformType.JAVA, svc.platformType());
}
}
Expand Down

0 comments on commit e042345

Please sign in to comment.