Skip to content

Commit 41302f2

Browse files
committed
Try 0 replicas and 6 masters to determine if the issue is on the last node only if it is replica
Signed-off-by: James Duong <[email protected]>
1 parent f738946 commit 41302f2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

java/integTest/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ tasks.register('startClusterTls') {
289289
workingDir "${project.rootDir}/../utils"
290290
def args = [*pythonCmd, 'remote_cluster_manager.py', '--host', remoteHost]
291291
if (System.getProperty("engine-version")) args.addAll(['--engine-version', System.getProperty("engine-version")])
292-
args.addAll(['start', '--cluster-mode', '--tls', '-n', '3', '-r', '2'])
292+
args.addAll(['start', '--cluster-mode', '--tls', '-n', '6', '-r', '0'])
293293
commandLine args
294294
standardOutput = os
295295
}
@@ -304,7 +304,7 @@ tasks.register('startClusterTls') {
304304
new ByteArrayOutputStream().withStream { os ->
305305
exec {
306306
workingDir "${project.rootDir}/../utils"
307-
commandLine(*pythonCmd, 'cluster_manager.py', 'start', '--cluster-mode', '--tls', '-n', '3', '-r', '2')
307+
commandLine(*pythonCmd, 'cluster_manager.py', 'start', '--cluster-mode', '--tls', '-n', '6', '-r', '0')
308308
standardOutput = os
309309
}
310310
clusterTlsHosts = extractAddressesFromClusterManagerOutput(os.toString())

java/integTest/src/test/java/glide/cluster/ClusterTlsCertificateTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import java.security.cert.CertificateFactory;
2121
import java.util.ArrayList;
2222
import java.util.List;
23-
import java.util.UUID;
2423
import org.junit.jupiter.api.BeforeAll;
2524
import org.junit.jupiter.api.Test;
2625

0 commit comments

Comments
 (0)