diff options
author | Christopher Faulet <cfaulet@haproxy.com> | 2023-05-17 11:08:51 +0200 |
---|---|---|
committer | Christopher Faulet <cfaulet@haproxy.com> | 2023-05-17 11:12:25 +0200 |
commit | 292619fc90a918342fd552e572139ed3fcc8d2bb (patch) | |
tree | 7b0fb22e3e582f8993318ad09c64ea042748dca2 | |
parent | c8a7bb16b7f0511bfdbf1ef3b03e369d518e8fac (diff) | |
download | haproxy-292619fc90a918342fd552e572139ed3fcc8d2bb.tar.gz |
REGTESTS: log: Reduce again response inspect-delay for last_rule.vtc
It was previously reduced from 10s to 1s but it remains too high, espeically
for the CI. It may be drastically reduced to 100ms. Idea is to just be sure
we will wait for the response before evaluating the TCP rules.
-rw-r--r-- | reg-tests/log/last_rule.vtc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reg-tests/log/last_rule.vtc b/reg-tests/log/last_rule.vtc index c69ebd8e2..f2b89e491 100644 --- a/reg-tests/log/last_rule.vtc +++ b/reg-tests/log/last_rule.vtc @@ -69,7 +69,7 @@ haproxy h1 -conf { # /hrqvar, /hrqacc1, /hrqred1, /hrqrej1, /hrqrej2, # /hrsacc1, /hrsred1, /hrsrej1, /hrsrej2 - tcp-response inspect-delay 1s + tcp-response inspect-delay 100ms tcp-request content set-var(txn.path) path # must have no effect tcp-request content accept if { var(txn.path) -m beg /trqacc1 /hrqrej1 } tcp-request content reject if { var(txn.path) -m beg /trqrej1 } |