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
At present, ClientOptions contains the following field:
// An optional pointer to `http.Transport` that will be used with a default HTTPTransport.// Using your own transport will make HTTPProxy, HTTPSProxy and CaCerts options ignored.HTTPTransport*http.Transport
At present,
ClientOptions
contains the following field:*http.Transport
is meant to be used as an implementation of thehttp.RoundTripper
interface.Updating all instances of
*http.Transport
tohttp.RoundTripper
seems to work perfectly, so this should not even be a breaking change.The text was updated successfully, but these errors were encountered: