Increase number of retries from 10 to 20. (#949) (#950)

(cherry picked from commit ba5c551a29)

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
patchback[bot]
2025-08-03 11:55:04 +02:00
committed by GitHub
parent 5b1382c799
commit f9f3c3d4ee
2 changed files with 4 additions and 1 deletions

View File

@@ -62,7 +62,7 @@ else:
# -1 usually means connection problems
RETRY_STATUS_CODES = (-1, 408, 429, 502, 503, 504)
RETRY_COUNT = 10
RETRY_COUNT = 20
def _decode_retry(module, response, info, retry_count):