[Webkit-unassigned] [Bug 71509] WebKit doesn't respect Vary: Cookie header

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Nov 17 17:15:39 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=71509





--- Comment #3 from Robert Brown <rjb at robertjbrown.com>  2011-11-17 17:15:39 PST ---
(In reply to comment #2)
> FWIW, I also tested this with the latest Webkit build, 5.1.1 7534.51.22, r100547 and this behavior still happens. So it does not seem like it has been fixed along the way.

If anyone else is trying to work around this with Varnish, here's what I did. I'm stripping out the Cache-Control header to ensure that Webkit does not improperly cache it. I only have one page that presents a real problem, hence the && req.url.

sub vcl_fetch {
  if (req.http.user-agent ~ "Safari" && req.url == "/myurl") {
    unset beresp.http.Cache-Control;
    set beresp.http.Cache-Control = "no-cache";
  }
}

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list