You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
longstartTime = System.nanoTime();
finalClientclient = newClient.Builder()
.setUsername("default")
.setPassword("")
.addEndpoint("http://127.0.0.1:9999/") // any port / any address, it does nothing for .build()
.build();
longstopTime = System.nanoTime();
System.out.println((stopTime - startTime) / 1000_000_000.0);
0.559635834
it seems it's because of createSSLContext, but I don't even need SSL, because I use http.
Describe your feedback
Code example
it seems it's because of
createSSLContext
, but I don't even need SSL, because I use http.In case of
.useNewImplementation(false)
-- 170 msThe text was updated successfully, but these errors were encountered: