r3190 - trunk/varnish-cache/bin/varnishd

tfheen at projects.linpro.no tfheen at projects.linpro.no
Tue Sep 16 10:29:18 CEST 2008


Author: tfheen
Date: 2008-09-16 10:29:18 +0200 (Tue, 16 Sep 2008)
New Revision: 3190

Modified:
   trunk/varnish-cache/bin/varnishd/mgt_param.c
Log:
Doc fixes

esi_syntax is a bitmap, not a restart.

max_esi_includes is a number of includes, not a number of restarts
(and remove some bit of doc accidentially copied from max_restarts)


Modified: trunk/varnish-cache/bin/varnishd/mgt_param.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/mgt_param.c	2008-09-16 07:32:03 UTC (rev 3189)
+++ trunk/varnish-cache/bin/varnishd/mgt_param.c	2008-09-16 08:29:18 UTC (rev 3190)
@@ -728,14 +728,12 @@
 		"  0x00000001 - Don't check if it looks like XML\n"
 		"Use 0x notation and do the bitor in your head :-)\n",
 		0,
-		"0", "restarts" },
+		"0", "bitmap" },
 	{ "max_esi_includes",
 		tweak_uint, &master.max_esi_includes, 0, UINT_MAX,
 		"Maximum depth of esi:include processing."
-		"\nBe aware that restarts are likely to cause a hit against "
-		"the backend, so don't increase thoughtlessly.\n",
 		0,
-		"5", "restarts" },
+		"5", "includes" },
 	{ "cache_vbe_conns", tweak_bool,  &master.cache_vbe_conns, 0, 0,
 		"Cache vbe_conn's or rely on malloc, that's the question.",
 		EXPERIMENTAL,




More information about the varnish-commit mailing list