]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_md: Reduce the maximum number of retries from 99 to 9.
authorRainer Jung <rjung@apache.org>
Tue, 16 Jun 2026 19:08:47 +0000 (19:08 +0000)
committerRainer Jung <rjung@apache.org>
Tue, 16 Jun 2026 19:08:47 +0000 (19:08 +0000)
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

modules/md/md_acme.c

index 1bd565d623c32aa3743c99e50b84f6017dbdcb32..2225ca96ee70b7d8938979b24573603040179722 100644 (file)
@@ -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))) {