Use response.headers instead of response.getheaders()

response.getheaders() will be deprecated by urllib3.
This commit is contained in:
2024-03-11 09:47:35 +08:00
parent cda4fd1f26
commit b91d53dc6f
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ def proxy_site(env, start_response, video=False):
else:
response, cleanup_func = util.fetch_url_response(url, send_headers)
response_headers = response.getheaders()
response_headers = response.headers
if isinstance(response_headers, urllib3._collections.HTTPHeaderDict):
response_headers = response_headers.items()
if video: