Re: how to send SSL certificate in POST request?

2017-02-22 Thread Michael Ball
I had to do the same several months ago. You will need to create a java key store with the certificate. Once you have a keystore, here's the clj-http docs on how to include it in an http request. https://github.com/dakrone/clj-http#keystores-trust-stores (client/post "https://example.com"; {:k

Re: [ANN] core.async 0.3.426

2017-02-22 Thread Gary Trakhman
Thank you so much for getting around to ASYNC-138+32, it was a usability issue between idiomatic clojure code and async code, would show up almost immediately in new projects, the workaround raised questions during code-reviews, etc. On Wed, Feb 22, 2017 at 1:47 PM Alex Miller wrote: > core.asyn

[ANN] core.async 0.3.426

2017-02-22 Thread Alex Miller
core.async 0.3.426 is now available. Try it via: [org.clojure/core.async "0.3.426"] 0.3.426 includes the following changes: - ASYNC-169 - handling of catch and finally inside go blocks was broken, causing a number of issues - Related: