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

Handle "Vary: *" headers by sending the object to pass, there really

isn't anything else we can do sensibly.

Fixes: #787



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@5399 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent bfb4ccf3
......@@ -111,6 +111,9 @@ sub vcl_fetch {
if (beresp.http.Set-Cookie) {
return (pass);
}
if (beresp.http.Vary == "*") {
return (pass);
}
return (deliver);
}
......
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