cch1 / http.async.client

Async Http Client - Clojure
http://cch1.github.com/http.async.client
267 stars 40 forks source link

Cannot create SSLContext with default keystore #70

Closed daveliepmann closed 8 years ago

daveliepmann commented 8 years ago

From the defn of ssl-context:

If [:keystore-file] is empty, will use default keystore.

Passing nil or "" for this parameter, or not passing it at all, results in:

java.io.FileNotFoundException File or resource "" could not be found.

cch1 commented 8 years ago

Confirmed

cch1 commented 8 years ago

Commit 552be4421bac7b3a02ff49156a4bef55429240fd should resolve the problem. I've added tests so that we don't run into this again.

daveliepmann commented 8 years ago

Well that is super-duper. Thank you!