r3186 - trunk/varnish-cache/bin/varnishd

phk at projects.linpro.no phk at projects.linpro.no
Mon Sep 15 13:47:15 CEST 2008


Author: phk
Date: 2008-09-15 13:47:15 +0200 (Mon, 15 Sep 2008)
New Revision: 3186

Modified:
   trunk/varnish-cache/bin/varnishd/default.vcl
Log:
Put comments in the default VCL to make people stop frobbing stuff
we don't support yet.



Modified: trunk/varnish-cache/bin/varnishd/default.vcl
===================================================================
--- trunk/varnish-cache/bin/varnishd/default.vcl	2008-09-12 12:30:50 UTC (rev 3185)
+++ trunk/varnish-cache/bin/varnishd/default.vcl	2008-09-15 11:47:15 UTC (rev 3186)
@@ -109,14 +109,17 @@
 }
 
 sub vcl_discard {
+    /* XXX: Do not redefine vcl_discard{}, it is not yet supported */
     discard;
 }
 
 sub vcl_prefetch {
+    /* XXX: Do not redefine vcl_prefetch{}, it is not yet supported */
     fetch;
 }
 
 sub vcl_timeout {
+    /* XXX: Do not redefine vcl_timeout{}, it is not yet supported */
     discard;
 }
 




More information about the varnish-commit mailing list