Commit 429835da authored by Nils Goroll's avatar Nils Goroll

try to stabilize this test

Ref #2963
parent 819241d2
......@@ -4,6 +4,7 @@ server s1 {
rxreq
expect req.url == "/hfm"
txresp -hdr "HFM: True" -bodylen 65530
accept
rxreq
expect req.url == "/hfp"
txresp -hdr "HFP: True" -bodylen 65550
......@@ -15,6 +16,9 @@ varnish v1 -arg "-s Transient=default" -vcl+backend {
return (synth(200));
}
}
sub vcl_backend_fetch {
set bereq.http.Connection = "close";
}
sub vcl_backend_response {
if (bereq.url == "/hfm") {
set beresp.uncacheable = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment