commit | 50fd1e1e3bf7cdd383a906c511a2e77e9ac5205d | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Dec 10 15:25:35 2007 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Fri Feb 15 10:09:15 2008 +0100 |
tree | 7dbe55d50eb34d83d93b2126d189841d59fd6d31 | |
parent | 70bcfb77a7f7aaac6c37f292f1a01ea272d25871 [diff] [blame] |
[BUG] failed conns were sometimes incremented in the frontend!
diff --git a/src/proto_http.c b/src/proto_http.c index 6ee1c58..0fa40cc 100644 --- a/src/proto_http.c +++ b/src/proto_http.c
@@ -2492,7 +2492,7 @@ 503, error_message(t, HTTP_ERR_503)); if (t->srv) t->srv->failed_conns++; - t->fe->failed_conns++; + t->be->failed_conns++; return 1; } }