> @@ -63,6 +63,9 @@ public SSLContext get() {
>           kmf.init(keyStore.get(), keyStorePassword.toCharArray());
>           SSLContext sc = SSLContext.getInstance("TLS");
>           sc.init(kmf.getKeyManagers(), trustManager, new SecureRandom());
> +         // TODO this is a temporary solution to disable SSL v3.0 in JDK and 
> JRE b/c of https://github.com/docker/docker/pull/8588/files.
> +         // This system property will be removed once we can use an http 
> driver with strict control on TLS protocols
> +         System.setProperty("https.protocols", "TLSv1");

thx cc @demobox @nacx This is what we'll replace with okhttp before moving to 
core.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/113/files#r21004904

Reply via email to