From: Willy Tarreau Date: Mon, 10 Dec 2007 14:25:35 +0000 (+0100) Subject: [BUG] failed conns were sometimes incremented in the frontend! X-Git-Tag: v1.3.14.3~9 X-Git-Url: http://git.kaiwu.me/%7B@url%7D?a=commitdiff_plain;h=1b1b7a967d2c7e021a3a5670ea9989c67a697508;p=haproxy.git [BUG] failed conns were sometimes incremented in the frontend! (cherry picked from commit 50fd1e1e3bf7cdd383a906c511a2e77e9ac5205d) --- diff --git a/src/proto_http.c b/src/proto_http.c index 5977f8d4b..9f016af41 100644 --- a/src/proto_http.c +++ b/src/proto_http.c @@ -2442,7 +2442,7 @@ int process_srv(struct session *t) 503, error_message(t, HTTP_ERR_503)); if (t->srv) t->srv->failed_conns++; - t->fe->failed_conns++; + t->be->failed_conns++; return 1; } }