You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our use case we need to make connections with different Managers, with some going through proxy (with http_proxy and/or https_proxy) and others don't.
Looking at current implementation, it's only in body of newTlsManager and that of newTlsManagerWith that those two variables are dealt with, and helpers like parseSocksSettings are not exposed.
One workaround (I haven't tested this yet) I can think of is to set/unset environment variables as desired before initializing different managers, but I'd appreciate it if this can be done without doing IO mutations.
The text was updated successfully, but these errors were encountered:
This is somewhat a followup to #94.
In our use case we need to make connections with different
Manager
s, with some going through proxy (withhttp_proxy
and/orhttps_proxy
) and others don't.Looking at current implementation, it's only in body of newTlsManager and that of newTlsManagerWith that those two variables are dealt with, and helpers like
parseSocksSettings
are not exposed.One workaround (I haven't tested this yet) I can think of is to set/unset environment variables as desired before initializing different managers, but I'd appreciate it if this can be done without doing IO mutations.
The text was updated successfully, but these errors were encountered: