summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--macir.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/macir.rb b/macir.rb
index 8331da4..f923839 100644
--- a/macir.rb
+++ b/macir.rb
@@ -185,13 +185,14 @@ def wait_for_challenge_propagation(domain, challenge)
threads.each(&:join)
end
-def acme_request_with_retries
- retries ||= 0
- yield
+def acme_request_with_retries(retries: 5, &block)
+ p "Retries: #{retries}"
+ block.call(self)
rescue Acme::Client::Error::BadNonce
- retries += 1
+ raise unless retries.positive?
+
p 'Retrying because of invalid nonce.'
- retry if retries <= 5
+ acme_request_with_retries(retries: retries - 1, &block)
end
def wait_for_challenge_validation(challenge, cert_name)