From ebf615d07739730bfa0b1eb0e5c4592a3fc331af Mon Sep 17 00:00:00 2001 From: Eugene Abramchuk Date: Thu, 5 Sep 2024 17:22:10 +0200 Subject: [PATCH 1/2] Change the default version to run tests against to 6.0.0-SNAPSHOT --- start_rc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/start_rc.py b/start_rc.py index 03e2fab440..ab3796424f 100644 --- a/start_rc.py +++ b/start_rc.py @@ -3,7 +3,7 @@ import sys from os.path import isfile -SERVER_VERSION = "5.5.0" +SERVER_VERSION = "6.0.0-SNAPSHOT" RC_VERSION = "0.8-SNAPSHOT" RELEASE_REPO = "https://repo1.maven.apache.org/maven2" @@ -88,6 +88,7 @@ def start_rc(stdout=None, stderr=None): "-cp", class_path, "com.hazelcast.remotecontroller.Main", + "--add-modules jdk.incubator.vector", "--use-simple-server", ] From 7d596562eb0a83b6e241aac1d41a8fa90a995600 Mon Sep 17 00:00:00 2001 From: Eugene Abramchuk Date: Fri, 6 Sep 2024 10:17:10 +0200 Subject: [PATCH 2/2] Remove unnecessary module load --- start_rc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/start_rc.py b/start_rc.py index ab3796424f..d2de194124 100644 --- a/start_rc.py +++ b/start_rc.py @@ -88,7 +88,6 @@ def start_rc(stdout=None, stderr=None): "-cp", class_path, "com.hazelcast.remotecontroller.Main", - "--add-modules jdk.incubator.vector", "--use-simple-server", ]