From 18d2371e0dfec68231136ac6877f0ebdf09dcf91 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Fri, 2 May 2025 09:40:12 +0200 Subject: [PATCH] MINOR: acme: change the default max retries to 5 Change the default max retries constant to 5 instead of 3. Some servers can be be a bit long to execute the challenge. --- include/haproxy/acme-t.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/haproxy/acme-t.h b/include/haproxy/acme-t.h index c614468c3..acc08164a 100644 --- a/include/haproxy/acme-t.h +++ b/include/haproxy/acme-t.h @@ -5,7 +5,7 @@ #include #include -#define ACME_RETRY 3 +#define ACME_RETRY 5 /* acme section configuration */ struct acme_cfg {