-
-
Notifications
You must be signed in to change notification settings - Fork 14
Proxy support #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
The underlying async-http library supports it but I don't know how faraday works. Can you point me at the documentation for how faraday expects the underlying adapters to work? |
I don't know if there are any guides on making custom adapters. I would just look at the official implementations and imitate what they are doing. For example, Net HTTP: Since Async does persistent connections, Net HTTP Persistent adapter could also be helpful to see: Proxy parameter is available in I see that Async::HTTP::Internet is used in the adapter but it does not have proxy parameters. And Async::HTTP::Proxy is a lower-level class. That means the underlying library will probably require changes before adapter support can be implemented. |
Thanks for the links I will take a look. |
It seems to be ignoring :proxy parameter (or http_proxy environment variable). Is this not supported?
The text was updated successfully, but these errors were encountered: