File tree Expand file tree Collapse file tree 1 file changed +0
-21
lines changed
java/integTest/src/test/java/glide/cluster Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -71,27 +71,6 @@ void testClusterTlsWithSelfSignedCertificateSucceeds() throws Exception {
7171 TestUtilities .createAndTestClient (config );
7272 }
7373
74- @ Test
75- void testClusterTlsWithLongerTimeoutSucceeds () throws Exception {
76- GlideClusterClientConfiguration config =
77- GlideClusterClientConfiguration .builder ()
78- .addresses (clusterNodes )
79- .useTLS (true , TlsAdvancedConfiguration .builder ().caCertificate (caCert ).build ())
80- .advancedConfiguration (
81- AdvancedGlideClusterClientConfiguration .builder ()
82- .connectionTimeout (10000 ) // 10 seconds instead of default
83- .build ())
84- .build ();
85-
86- try (GlideClusterClient client = GlideClusterClient .createClient (config ).get ()) {
87- String key = "test_longer_timeout_" + UUID .randomUUID ();
88- String value = "test_value" ;
89-
90- assertEquals ("OK" , client .set (key , value ).get ());
91- assertEquals (value , client .get (key ).get ());
92- }
93- }
94-
9574 @ Test
9675 void testClusterTlsWithMultipleCertificatesSucceeds () throws Exception {
9776 String caCertStr = new String (caCert , StandardCharsets .UTF_8 );
You can’t perform that action at this time.
0 commit comments