mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-18 18:19:39 -05:00
[MINOR] http: reset analysers to listener's, not frontend's
When resetting a session's request analysers, we must take them from the listener, not from the frontend. At the moment there is no difference but this might change.
This commit is contained in:
parent
815a9b2039
commit
6df7a0e7d3
1 changed files with 1 additions and 1 deletions
|
|
@ -3773,7 +3773,7 @@ void http_end_txn_clean_session(struct session *s)
|
|||
if (s->rep->lr >= s->rep->data + s->rep->size)
|
||||
s->rep->lr -= s->req->size;
|
||||
|
||||
s->req->analysers |= s->fe->fe_req_ana;
|
||||
s->req->analysers |= s->listener->analysers;
|
||||
s->rep->analysers = 0;
|
||||
|
||||
http_silent_debug(__LINE__, s);
|
||||
|
|
|
|||
Loading…
Reference in a new issue