Skip to content

Commit d8e9bcb

Browse files
committed
requests 2.32.0 and 2.32.1 have been yanked.
Signed-off-by: Felix Fontein <[email protected]>
1 parent 2a059a9 commit d8e9bcb

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

docker/transport/basehttpadapter.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@ def close(self):
77
if hasattr(self, 'pools'):
88
self.pools.clear()
99

10-
# Hotfix for requests 2.32.0 and 2.32.1: its commit
11-
# https://github.com/psf/requests/commit/c0813a2d910ea6b4f8438b91d315b8d181302356
12-
# changes requests.adapters.HTTPAdapter to no longer call get_connection() from
13-
# send(), but instead call _get_connection().
14-
def _get_connection(self, request, *args, proxies=None, **kwargs):
15-
return self.get_connection(request.url, proxies)
16-
1710
# Fix for requests 2.32.2+:
1811
# https://github.com/psf/requests/commit/c98e4d133ef29c46a9b68cd783087218a8075e05
1912
def get_connection_with_tls_context(self, request, verify, proxies=None, cert=None):

0 commit comments

Comments
 (0)