Open
Description
Hi,
when doing an async request like:
(let [response (defer (http/get "http://example.com" {:async? true} (fn [_] _) (fn [_] _))])
response
is org.apache.http.HttpResponse
and not a Ring response map.
In our use case we're using the code above in our tests.
Can the return value of an async request also be wrapped in such a map?