We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a350976 commit 64c8313Copy full SHA for 64c8313
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