commit | 424e04a32b230a25f06fd5e941cd2bfe911e390f | [log] [tgz] |
---|---|---|
author | willy tarreau <willy@wtap.(none)> | Sat May 13 16:08:47 2006 +0200 |
committer | willy tarreau <willy@wtap.(none)> | Sat May 13 16:10:47 2006 +0200 |
tree | 18bfe56b8ddff3c72f4999ef28ba7e615d6ffca5 | |
parent | 814cbc6a722dbf9ec7e4b099ab5c4688168f543d [diff] |
[MINOR] do not report queue time if not queued !
diff --git a/haproxy.c b/haproxy.c index e51ae32..8bec84b 100644 --- a/haproxy.c +++ b/haproxy.c
@@ -4749,7 +4749,8 @@ c == CL_STSHUTW || (c == CL_STSHUTR && t->req->l == 0)) { /* give up */ tv_eternity(&t->cnexpire); - t->logs.t_queue = tv_diff(&t->logs.tv_accept, &now); + if (t->pend_pos) + t->logs.t_queue = tv_diff(&t->logs.tv_accept, &now); srv_close_with_err(t, SN_ERR_CLICL, t->pend_pos ? SN_FINST_Q : SN_FINST_C, 0, 0, NULL); return 1;