From ae106ef0d1c280e0740a23d45094fbddea3def6f Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Tue, 14 May 2019 08:07:23 +0000 Subject: [PATCH] * Only do one retry to be more in line with the other modules. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1859213 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 95336f7576..ca5c5d95ba 100644 --- a/modules/http2/mod_proxy_http2.c +++ b/modules/http2/mod_proxy_http2.c @@ -429,7 +429,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.50.1