From: Rainer Jung Date: Tue, 16 Jun 2026 19:08:47 +0000 (+0000) Subject: mod_md: Reduce the maximum number of retries from 99 to 9. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed55039fd9fb0997a28a4795ed954be37e001a8c;p=thirdparty%2Fapache%2Fhttpd.git mod_md: Reduce the maximum number of retries from 99 to 9. Merge from icing/md: https://github.com/icing/mod_md/commit/1c37b474e2a815d20103d3b2992e65177a75dec1 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1935436 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/md/md_acme.c b/modules/md/md_acme.c index 1bd565d623..2225ca96ee 100644 --- a/modules/md/md_acme.c +++ b/modules/md/md_acme.c @@ -648,7 +648,7 @@ apr_status_t md_acme_create(md_acme_t **pacme, apr_pool_t *p, const char *url, acme->user_agent = apr_psprintf(p, "%s mod_md/%s", base_product, MOD_MD_VERSION); acme->proxy_url = apr_pstrdup(p, proxy_url); - acme->max_retries = 99; + acme->max_retries = 9; acme->ca_file = ca_file; if (APR_SUCCESS != (rv = apr_uri_parse(p, url, &uri_parsed))) {