Misha Kozik
Misha Kozik
This is, actually, a clojure related bug. See http://dev.clojure.org/jira/browse/CLJ-979 Fix is planned in 1.7-alpha5
Spent a lot of time with similar issue, found a workaround to disable certificate check. ```clojure (defn trust-all-certificates [] (let [trust (into-array javax.net.ssl.TrustManager [(reify javax.net.ssl.X509TrustManager (getAcceptedIssuers [this]) (checkClientTrusted [this certs...
Observed the same behaviour ``` java> 1 java.lang.Integer res2 = 1 java> Arrays.asList(1,2,3).stream().parallel(); java.util.stream.ReferencePipeline.Head res3 = java.util.stream.ReferencePipeline$Head@6b0839b6 java> 1 ERROR: not a statement 1; ^ ERROR: package java.util.stream.ReferencePipeline does not...