mirror of https://github.com/docker/docker-py.git
Merge pull request #3257 from felixfontein/requests-hotfix
Fix for requests 2.32
This commit is contained in:
commit
7785ad913d
|
@ -6,3 +6,8 @@ class BaseHTTPAdapter(requests.adapters.HTTPAdapter):
|
|||
super().close()
|
||||
if hasattr(self, 'pools'):
|
||||
self.pools.clear()
|
||||
|
||||
# Fix for requests 2.32.2+:
|
||||
# https://github.com/psf/requests/commit/c98e4d133ef29c46a9b68cd783087218a8075e05
|
||||
def get_connection_with_tls_context(self, request, verify, proxies=None, cert=None):
|
||||
return self.get_connection(request.url, proxies)
|
||||
|
|
Loading…
Reference in New Issue