mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-28 05:14:56 -04:00
BUG/MINOR: tcp-rules: Preserve the right filter analyser on content eval abort
When a tcp-request or a tcp-response content ruleset evaluation is aborted, the corresponding FLT_END analyser must be preserved, if any. But because of a typo error, on the tcp-response content ruleset evaluation, we try to preserve the request analyser instead of the response one. This patch must be backported to 2.2.
This commit is contained in:
parent
99aaca99b5
commit
19dbf2d625
1 changed files with 1 additions and 1 deletions
|
|
@ -401,7 +401,7 @@ resume_execution:
|
|||
channel_abort(&s->req);
|
||||
|
||||
abort:
|
||||
rep->analysers &= AN_REQ_FLT_END;
|
||||
rep->analysers &= AN_RES_FLT_END;
|
||||
|
||||
if (!(s->flags & SF_ERR_MASK))
|
||||
s->flags |= SF_ERR_PRXCOND;
|
||||
|
|
|
|||
Loading…
Reference in a new issue