From 8c70ba081e9892217510b6b01f0402482161ef84 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Fri, 12 Feb 2021 22:11:01 +0100 Subject: Raise client timeout from 10 to 30s. --- Changelog | 1 + client | 2 +- config/lacme.conf | 2 +- lacme.8.md | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Changelog b/Changelog index 4168e58..edf1d95 100644 --- a/Changelog +++ b/Changelog @@ -15,6 +15,7 @@ lacme (0.7.1) upstream; - documentation: emphasize default values in the config file, and move the most common options ('hash', 'keyUsage', 'CAfile', 'min-days') to the default section. + - Raise client timeout from 10 to 30s. -- Guilhem Moulin Wed, 09 Dec 2020 18:23:22 +0100 diff --git a/client b/client index bacd4d6..c5788dd 100755 --- a/client +++ b/client @@ -272,7 +272,7 @@ if ($COMMAND eq 'account') { # elsif ($COMMAND eq 'newOrder') { die unless @ARGV; - my $timeout = $CONFIG->{timeout} // 10; + my $timeout = $CONFIG->{timeout} // 30; my $csr = do { local $/ = undef; }; set_kid(); diff --git a/config/lacme.conf b/config/lacme.conf index cc8488d..e49bd39 100644 --- a/config/lacme.conf +++ b/config/lacme.conf @@ -42,7 +42,7 @@ # Timeout in seconds after which the client stops polling the ACME # server and considers the request failed. # -#timeout = 10 +#timeout = 30 # Whether to verify the server certificate chain. # diff --git a/lacme.8.md b/lacme.8.md index 2ffdc25..3d46786 100644 --- a/lacme.8.md +++ b/lacme.8.md @@ -196,7 +196,7 @@ of [ACME] commands and dialogues with the remote [ACME] server). : Timeout in seconds after which the client stops polling the [ACME] server and considers the request failed. - Default: `10`. + Default: `30`. *SSL_verify* -- cgit v1.2.3