Skip to content

Commit

Permalink
Extend fix to requests 2.32.2+.
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Fontein <felix@fontein.de>
  • Loading branch information
felixfontein committed May 21, 2024
1 parent b80bfbf commit f4daef7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docker/transport/basehttpadapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ def close(self):
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, proxies=None, **kwargs):
return self.get_connection(request.url, 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)

0 comments on commit f4daef7

Please sign in to comment.