We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b86573a commit e33e0a4Copy full SHA for e33e0a4
docker/transport/basehttpadapter.py
@@ -6,3 +6,10 @@ def close(self):
6
super().close()
7
if hasattr(self, 'pools'):
8
self.pools.clear()
9
+
10
+ # Hotfix for requests 2.32.0: 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)
0 commit comments