From bea1da6e0d2557143689acd2842b82b5b4268dec Mon Sep 17 00:00:00 2001 From: Nils Goroll Date: Tue, 5 Nov 2019 18:50:36 +0100 Subject: [PATCH] get an idea about the margin before r02219.vtc fails When making other changes which require additional workspace, this test may fail for too big a request in the first place. This additional logging facilitates before/after analysis --- bin/varnishtest/tests/r02219.vtc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/varnishtest/tests/r02219.vtc b/bin/varnishtest/tests/r02219.vtc index ff1a924f79..8b4d1c1884 100644 --- a/bin/varnishtest/tests/r02219.vtc +++ b/bin/varnishtest/tests/r02219.vtc @@ -10,7 +10,10 @@ server s1 { } -start varnish v1 -arg "-p workspace_client=9k" -proto PROXY -vcl+backend { + import std; + import vtc; sub vcl_recv { + std.log(vtc.workspace_free(client)); return (pass); } } -start