]> Raphaƫl G. Git Repositories - acme/blobdiff - Acme.pm
Fix polling of pending certificate
[acme] / Acme.pm
diff --git a/Acme.pm b/Acme.pm
index 134b3d4e12f200a2f6bcc61a85f8a6f3b7ee7861..acffe8d9d23aab42beb660349febb667505a4ee5 100644 (file)
--- a/Acme.pm
+++ b/Acme.pm
@@ -324,7 +324,7 @@ sub directory {
        my $time = time;
 
        # Set directory
-       my $dir = $self->{prod} ? ACME_PROD_DIR : ACME_DIR;
+       my $dir = $self->{domain}{prod} ? ACME_PROD_DIR : ACME_DIR;
 
        # Create a request
        my $req = HTTP::Request->new(GET => $dir.'?'.$time);
@@ -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