Add fix for requests 2.32.2+. (#864)

This commit is contained in:
Felix Fontein 2024-05-21 19:22:39 +02:00 committed by GitHub
parent e242a41bda
commit 1b50cee901
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,5 @@
bugfixes:
- "vendored Docker SDK for Python - include a fix requests 2.32.2+ compatibility
(https://github.com/ansible-collections/community.docker/issues/860,
https://github.com/psf/requests/issues/6707,
https://github.com/ansible-collections/community.docker/pull/864)."

View File

@ -19,9 +19,14 @@ class BaseHTTPAdapter(_HTTPAdapter):
if hasattr(self, 'pools'):
self.pools.clear()
# Hotfix for requests 2.32.0: its commit
# Hotfix for requests 2.32.0 and 2.32.1: its commit
# https://github.com/psf/requests/commit/c0813a2d910ea6b4f8438b91d315b8d181302356
# changes requests.adapters.HTTPAdapter to no longer call get_connection() from
# send(), but instead call _get_connection().
def _get_connection(self, request, *args, **kwargs):
return self.get_connection(request.url, kwargs.get('proxies'))
# 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)