Commit 56877d54 authored by Geoff Simmons's avatar Geoff Simmons

Test legal use of the VDP constructor name parameter.

parent d57d8153
...@@ -124,7 +124,7 @@ varnish v1 -vcl+backend { ...@@ -124,7 +124,7 @@ varnish v1 -vcl+backend {
import ${vmod_pipe}; import ${vmod_pipe};
sub vcl_init { sub vcl_init {
new cat = pipe.vdp(path="${cat}", bufsz=16k); new cat = pipe.vdp(path="${cat}", name="dog", bufsz=16k);
} }
sub vcl_backend_response { sub vcl_backend_response {
...@@ -132,7 +132,7 @@ varnish v1 -vcl+backend { ...@@ -132,7 +132,7 @@ varnish v1 -vcl+backend {
} }
sub vcl_deliver { sub vcl_deliver {
set resp.filters = "cat"; set resp.filters = "dog";
} }
} }
......
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