Skip to content

Commit 50373b6

Browse files
authored
Increase enterprise requirement for ZeroTokenNodesIT (#435)
The changes related to this test are not included in released enterprise versions as of this moment. It should be safe to increase minEnterprise requirement to 2025.1 for now.
1 parent 48a9ea0 commit 50373b6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

integration-tests/src/test/java/com/datastax/oss/driver/core/metadata/ZeroTokenNodesIT.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,14 @@ public class ZeroTokenNodesIT {
2727
@Before
2828
public void checkScyllaVersion() {
2929
// minOSS = "6.2.0",
30-
// minEnterprise = "2024.2.3",
30+
// minEnterprise = "2025.1.0",
3131
// Zero-token nodes introduced in scylladb/scylladb#19684
32+
// 2025.1 is an estimated future version and it still may not have this change in.
33+
// This number may need to be adjusted once CI picks up this test.
3234
assumeTrue(CcmBridge.SCYLLA_ENABLEMENT);
3335
if (CcmBridge.SCYLLA_ENTERPRISE) {
3436
assumeTrue(
35-
CcmBridge.VERSION.compareTo(Objects.requireNonNull(Version.parse("2024.2.3"))) >= 0);
37+
CcmBridge.VERSION.compareTo(Objects.requireNonNull(Version.parse("2025.1.0"))) >= 0);
3638
} else {
3739
assumeTrue(CcmBridge.VERSION.compareTo(Objects.requireNonNull(Version.parse("6.2.0"))) >= 0);
3840
}

0 commit comments

Comments
 (0)