Skip to content

Commit ba5c551

Browse files
authored
Increase number of retries from 10 to 20. (#949)
1 parent 09c4555 commit ba5c551

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bugfixes:
2+
- "acme_* modules - increase the maximum amount of retries from 10 to 20 to accomodate ZeroSSL's buggy implementation
3+
(https://github.com/ansible-collections/community.crypto/pull/949)."

plugins/module_utils/_acme/acme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
# -1 usually means connection problems
6767
RETRY_STATUS_CODES = (-1, 408, 429, 502, 503, 504)
6868

69-
RETRY_COUNT = 10
69+
RETRY_COUNT = 20
7070

7171

7272
def _decode_retry(

0 commit comments

Comments
 (0)