Igor Sidorov
Igor Sidorov
The thing is I want to add support of SSL options (https://github.com/lostisland/faraday/blob/master/lib/faraday/options/ssl_options.rb) to `async-http-faraday` adapter. I can see 2 approaches to that: 1. Rewrite the adapter to use lower-level `Async::HTTP::Client`...
I guess that would be almost the same as the first approach, as most of the `Async::HTTP::Internet` logic is contained in the `#call` method that I'll need to rewrite to...
Well if we are talking about the faraday use-case, SSL can be configured only per `Faraday::Connection`, so all requests made through the adapter wrapped by that connection will use the...