Skip to content

Commit 1c37b47

Browse files
authored
Reduce the maximum number of retries from 99 to 9 (#416)
1 parent d73557d commit 1c37b47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/md_acme.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ apr_status_t md_acme_create(md_acme_t **pacme, apr_pool_t *p, const char *url,
646646
acme->user_agent = apr_psprintf(p, "%s mod_md/%s",
647647
base_product, MOD_MD_VERSION);
648648
acme->proxy_url = apr_pstrdup(p, proxy_url);
649-
acme->max_retries = 99;
649+
acme->max_retries = 9;
650650
acme->ca_file = ca_file;
651651

652652
if (APR_SUCCESS != (rv = apr_uri_parse(p, url, &uri_parsed))) {

0 commit comments

Comments
 (0)