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.
2 parents b86573a + d8e9bcb commit 7785ad9Copy full SHA for 7785ad9
docker/transport/basehttpadapter.py
@@ -6,3 +6,8 @@ def close(self):
6
super().close()
7
if hasattr(self, 'pools'):
8
self.pools.clear()
9
+
10
+ # Fix for requests 2.32.2+:
11
+ # https://github.com/psf/requests/commit/c98e4d133ef29c46a9b68cd783087218a8075e05
12
+ def get_connection_with_tls_context(self, request, verify, proxies=None, cert=None):
13
+ return self.get_connection(request.url, proxies)
0 commit comments