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.
2 parents 88ac408 + 15f96b7 commit 67f5433Copy full SHA for 67f5433
acme.sh
@@ -2229,6 +2229,12 @@ _send_signed_request() {
2229
_debug3 _body "$_body"
2230
fi
2231
2232
+ if [ "$code" = '503' ]; then
2233
+ _sleep_overload_retry_sec=3
2234
+ _info "It seems the CA server is currently overloaded, let's wait and retry. Sleeping $_sleep_overload_retry_sec seconds."
2235
+ _sleep $_sleep_overload_retry_sec
2236
+ continue
2237
+ fi
2238
if _contains "$_body" "JWS has invalid anti-replay nonce" || _contains "$_body" "JWS has an invalid anti-replay nonce"; then
2239
_info "It seems the CA server is busy now, let's wait and retry. Sleeping $_sleep_retry_sec seconds."
2240
_CACHED_NONCE=""
0 commit comments