1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From 8cb05e925c788d6686224bfb413214ec63b370e5 Mon Sep 17 00:00:00 2001
From: Thibaut Artis <artous@uplex.de>
Date: Tue, 26 Aug 2025 11:01:22 +0200
Subject: test: Fix c17.vtc
Increase slightly the `limit` parameter to fix
c17.vtc test.
diff --git a/src/vtc/c17.vtc b/src/vtc/c17.vtc
index 7ee19e7..731883a 100644
--- a/src/vtc/c17.vtc
+++ b/src/vtc/c17.vtc
@@ -9,7 +9,7 @@ varnish v1 -vcl {
sub vcl_init {
# limit is the minimum for which the last client req passes
new pattern = re.regex("(?:^|&)(a|b)=([^&]*).*?&(a|b)=([^&]*)",
- forbody=true, limit=1749);
+ forbody=true, limit=1752);
}
sub collect {
|