mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
class overrides the faraday adapter was relying on subclassing the session to load custom plugins. this doesn't play well with other integrations monkeypatching the original session class, such as datadog or webmock, which redefine it. from now on, we not only defer the creation of the custom until necessary, we also use Session#plugin Fixes #187