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 { ...@@ -4,6 +4,7 @@ server s1 {
rxreq rxreq
expect req.url == "/hfm" expect req.url == "/hfm"
txresp -hdr "HFM: True" -bodylen 65530 txresp -hdr "HFM: True" -bodylen 65530
accept
rxreq rxreq
expect req.url == "/hfp" expect req.url == "/hfp"
txresp -hdr "HFP: True" -bodylen 65550 txresp -hdr "HFP: True" -bodylen 65550
...@@ -15,6 +16,9 @@ varnish v1 -arg "-s Transient=default" -vcl+backend { ...@@ -15,6 +16,9 @@ varnish v1 -arg "-s Transient=default" -vcl+backend {
return (synth(200)); return (synth(200));
} }
} }
sub vcl_backend_fetch {
set bereq.http.Connection = "close";
}
sub vcl_backend_response { sub vcl_backend_response {
if (bereq.url == "/hfm") { if (bereq.url == "/hfm") {
set beresp.uncacheable = true; 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