We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 478b3eb commit 5a93a4cCopy full SHA for 5a93a4c
sdcclient/_common.py
@@ -11,7 +11,7 @@ def __init__(self, *args, **kwargs):
11
retry_strategy = Retry(
12
total=3,
13
status_forcelist=[403, 404, 429, 500, 502, 503, 504],
14
- method_whitelist=["HEAD", "GET", "OPTIONS", "PUSH", "PUT"],
+ allowed_methods=["HEAD", "GET", "OPTIONS", "PUSH", "PUT"],
15
backoff_factor=2,
16
)
17
kwargs["max_retries"] = retry_strategy
0 commit comments