From 060dd8c1f90f81f00d736ccbf936794f5c8ff941 Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Mon, 24 Aug 2020 15:39:56 +0000 Subject: [PATCH] Merge r1859213 from trunk: * Only do one retry to be more in line with the other modules. Note: mod_proxy_http2 is still experimental and thus CTR even for backports. Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1881147 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/mod_proxy_http2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http2/mod_proxy_http2.c b/modules/http2/mod_proxy_http2.c index 03c77edf8ad..893aa8fd316 100644 --- a/modules/http2/mod_proxy_http2.c +++ b/modules/http2/mod_proxy_http2.c @@ -425,7 +425,7 @@ run_connect: ctx->p_conn = NULL; } ++reconnects; - if (reconnects < 5) { + if (reconnects < 2) { goto run_connect; } ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, ctx->owner, APLOGNO(10023) -- 2.47.3