mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-03-26 21:33:25 +00:00
Also retry on HTTP statuses 502 and 504. (#947)
This commit is contained in:
@@ -64,7 +64,7 @@ if t.TYPE_CHECKING:
|
||||
|
||||
|
||||
# -1 usually means connection problems
|
||||
RETRY_STATUS_CODES = (-1, 408, 429, 503)
|
||||
RETRY_STATUS_CODES = (-1, 408, 429, 502, 503, 504)
|
||||
|
||||
RETRY_COUNT = 10
|
||||
|
||||
|
||||
Reference in New Issue
Block a user