From 01220354d389cd05474713f8c982d05c9b17aafb Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Mon, 2 Oct 2023 11:43:46 -0500 Subject: [PATCH] Backport GHSA-v845-jxx5-vc9f (#3139) Co-authored-by: Quentin Pradet Co-authored-by: Illia Volochii Conflict:Files test_retry.py,test_retry_deprecated.py ,and test_poolmaner.py do not exit.Therefore,no test case is involved. Reference:https://github.com/urllib3/urllib3/commit/01220354d389cd05474713f8c982d05c9b17aafb --- src/pip/_vendor/urllib3/util/retry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pip/_vendor/urllib3/util/retry.py b/src/pip/_vendor/urllib3/util/retry.py index ee30c91..545e876 100644 --- a/src/pip/_vendor/urllib3/util/retry.py +++ b/src/pip/_vendor/urllib3/util/retry.py @@ -154,7 +154,7 @@ class Retry(object): RETRY_AFTER_STATUS_CODES = frozenset([413, 429, 503]) - DEFAULT_REDIRECT_HEADERS_BLACKLIST = frozenset(["Authorization"]) + DEFAULT_REDIRECT_HEADERS_BLACKLIST = frozenset(["Cookie","Authorization"]) #: Maximum backoff time. BACKOFF_MAX = 120 -- 2.33.0