From: Raphaƫl Gertz Date: Tue, 19 Sep 2017 11:38:18 +0000 (+0200) Subject: Fix polling of pending certificate X-Git-Tag: 1.0.0~1 X-Git-Url: https://git.rapsys.eu/acme/commitdiff_plain/2a10253aea57d1e25280392a4f9b4e9420ece1b8 Fix polling of pending certificate --- diff --git a/Acme.pm b/Acme.pm index e928010..acffe8d 100644 --- a/Acme.pm +++ b/Acme.pm @@ -602,10 +602,10 @@ sub authorize { } @{$self->{domains}}; # Init max run - my $remaining = 10; + my $remaining = 300; # Poll pending - while (--$remaining >= 0 and scalar map { $_->{status} eq 'valid' ? 1 : (); } values %{$self->{challenges}}) { + while (--$remaining >= 0 and scalar map { $_->{status} eq 'pending' ? 1 : (); } values %{$self->{challenges}}) { # Sleep sleep(1); # Poll remaining pending