File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
java/integTest/src/test/java/glide/cluster Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 2121import java .util .ArrayList ;
2222import java .util .List ;
2323import org .junit .jupiter .api .BeforeAll ;
24+ import org .junit .jupiter .api .Disabled ;
2425import org .junit .jupiter .api .Test ;
2526
2627public class ClusterTlsCertificateTest {
@@ -71,6 +72,7 @@ void testClusterTlsWithSelfSignedCertificateSucceeds() throws Exception {
7172 }
7273
7374 @ Test
75+ @ Disabled ("Temporarily disabled to isolate single test" )
7476 void testClusterTlsWithMultipleCertificatesSucceeds () throws Exception {
7577 String caCertStr = new String (caCert , StandardCharsets .UTF_8 );
7678 String multipleCerts = caCertStr + "\n " + caCertStr ;
@@ -109,6 +111,7 @@ void testClusterTlsWithInvalidCertificateFails() throws Exception {
109111 }
110112
111113 @ Test
114+ @ Disabled ("Temporarily disabled to isolate single test" )
112115 void testClusterTlsWithKeyStoreSucceeds () throws Exception {
113116 Path keyStorePath = Files .createTempFile ("test-keystore" , ".jks" );
114117 char [] password = "password" .toCharArray ();
You can’t perform that action at this time.
0 commit comments