Commit 0e967d6a authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Don't return error from vcl_backend_response{}

parent cb932911
......@@ -13,7 +13,10 @@ varnish v1 \
-vcl+backend {
sub vcl_backend_response {
error(751);
set beresp.uncacheable = false;
set beresp.ttl = 0s;
set beresp.status = 751;
return (deliver);
}
} -start
......
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