From 50fd1e1e3bf7cdd383a906c511a2e77e9ac5205d Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 10 Dec 2007 15:25:35 +0100 Subject: [PATCH] [BUG] failed conns were sometimes incremented in the frontend! --- src/proto_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_http.c b/src/proto_http.c index 6ee1c587a..0fa40cc21 100644 --- a/src/proto_http.c +++ b/src/proto_http.c @@ -2492,7 +2492,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; } }