Commit 49a42aa1 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

These three tests depend on not running with streaming

parent b6c079b6
......@@ -6,6 +6,9 @@ server s1 {
} -start
varnish v1 -vcl+backend {
sub vcl_fetch {
set beresp.do_stream = false;
}
} -start
varnish v1 -cliok "param.set http_range_support on"
......
......@@ -6,6 +6,9 @@ server s1 {
} -start
varnish v1 -vcl+backend {
sub vcl_fetch {
set beresp.do_stream = false;
}
} -start
varnish v1 -cliok "param.set http_range_support on"
......
......@@ -11,6 +11,9 @@ server s1 {
varnish v1 -vcl+backend {
sub vcl_recv { return (pass); }
sub vcl_fetch {
set beresp.do_stream = false;
}
} -start
client c1 {
......
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