Skip to content

Commit

Permalink
Hotfix for requests 2.32.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed May 20, 2024
1 parent b6464db commit f579f6a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/transport/basehttpadapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ def close(self):
super().close()
if hasattr(self, 'pools'):
self.pools.clear()

# Hotfix for requests 2.32.0: 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)

0 comments on commit f579f6a

Please sign in to comment.