From: phk Date: Mon, 15 Sep 2008 11:47:15 +0000 (+0000) Subject: Put comments in the default VCL to make people stop frobbing stuff X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb20fd94ac869eeba504738c4a74e9a2e8426484;p=varnish Put comments in the default VCL to make people stop frobbing stuff we don't support yet. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3186 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/default.vcl b/varnish-cache/bin/varnishd/default.vcl index 758e25e1..d55d9488 100644 --- a/varnish-cache/bin/varnishd/default.vcl +++ b/varnish-cache/bin/varnishd/default.vcl @@ -109,14 +109,17 @@ sub vcl_deliver { } 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; }