r4409 - branches/2.0/varnish-cache/man

tfheen at projects.linpro.no tfheen at projects.linpro.no
Wed Dec 16 12:21:16 CET 2009


Author: tfheen
Date: 2009-12-16 12:21:16 +0100 (Wed, 16 Dec 2009)
New Revision: 4409

Modified:
   branches/2.0/varnish-cache/man/vcl.7so
Log:
Merge r4385: Fix Set-Cookie vs Cookie confusion and old keywords.
    
Fixes #600


Modified: branches/2.0/varnish-cache/man/vcl.7so
===================================================================
--- branches/2.0/varnish-cache/man/vcl.7so	2009-12-16 11:14:46 UTC (rev 4408)
+++ branches/2.0/varnish-cache/man/vcl.7so	2009-12-16 11:21:16 UTC (rev 4409)
@@ -358,8 +358,8 @@
 .\" vcl_hash
 .It Cm vcl_hash
 Use
-.Cm req.hash += req.http.Set-Cookie
-or similar to include the Set-Cookie HTTP header in the hash string.
+.Cm req.hash += req.http.Cookie
+or similar to include the Cookie HTTP header in the hash string.
 The
 .Cm vcl_hash
 subroutine may terminate with one of the following keywords:
@@ -687,7 +687,7 @@
 
 sub vcl_fetch {
     if (obj.http.Set-Cookie) {
-        insert;
+        deliver;
     }
 }
 .Ed



More information about the varnish-commit mailing list