This commit is contained in:
2023-05-29 13:35:15 +02:00
parent f8648c1a90
commit 9e148590de
2 changed files with 5 additions and 1 deletions

View File

@@ -59,7 +59,7 @@ retry_strategy = Retry(
total=5,
status_forcelist=[403, 429, 500, 502, 503, 504],
# method_whitelist=["HEAD", "GET", "OPTIONS"],
method_whitelist=False,
#method_whitelist=False,
backoff_factor=4,
)
adapter = HTTPAdapter(max_retries=retry_strategy)