File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
java/integTest/src/test/java/glide/cluster Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -77,15 +77,16 @@ void testClusterTlsWithLongerTimeoutSucceeds() throws Exception {
7777 GlideClusterClientConfiguration .builder ()
7878 .addresses (clusterNodes )
7979 .useTLS (true , TlsAdvancedConfiguration .builder ().caCertificate (caCert ).build ())
80- .advancedConfiguration (AdvancedGlideClusterClientConfiguration .builder ()
81- .connectionTimeout (10000 ) // 10 seconds instead of default
82- .build ())
80+ .advancedConfiguration (
81+ AdvancedGlideClusterClientConfiguration .builder ()
82+ .connectionTimeout (10000 ) // 10 seconds instead of default
83+ .build ())
8384 .build ();
8485
8586 try (GlideClusterClient client = GlideClusterClient .createClient (config ).get ()) {
8687 String key = "test_longer_timeout_" + UUID .randomUUID ();
8788 String value = "test_value" ;
88-
89+
8990 assertEquals ("OK" , client .set (key , value ).get ());
9091 assertEquals (value , client .get (key ).get ());
9192 }
You can’t perform that action at this time.
0 commit comments