From a83c50289ba3f29c359068520a828c390b07af8b Mon Sep 17 00:00:00 2001 From: Zaman Date: Sat, 7 Oct 2023 10:11:29 +0530 Subject: [PATCH] Incorporating change for urllib3 moving from method_whitelist as a param to allowed_methods --- crux/_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crux/_config.py b/crux/_config.py index 037ea27..1c76ce3 100644 --- a/crux/_config.py +++ b/crux/_config.py @@ -125,7 +125,7 @@ def __init__( # pylint: disable=too-many-branches 527, 530, ), - method_whitelist=("GET", "PUT", "DELETE", "POST"), + allowed_methods=("GET", "PUT", "DELETE", "POST"), redirect=10, connect=10, read=10,