r4716 - trunk/varnish-cache/bin/varnishd

phk at varnish-cache.org phk at varnish-cache.org
Thu Apr 22 13:13:34 CEST 2010


Author: phk
Date: 2010-04-22 13:13:34 +0200 (Thu, 22 Apr 2010)
New Revision: 4716

Modified:
   trunk/varnish-cache/bin/varnishd/mgt_param.c
Log:
Set correct upper limit on critbit cooling timer.



Modified: trunk/varnish-cache/bin/varnishd/mgt_param.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/mgt_param.c	2010-04-22 09:54:14 UTC (rev 4715)
+++ trunk/varnish-cache/bin/varnishd/mgt_param.c	2010-04-22 11:13:34 UTC (rev 4716)
@@ -818,7 +818,7 @@
 		EXPERIMENTAL,
 		"off", "bool" },
 	{ "critbit_cooloff", tweak_timeout_double,
-		&master.critbit_cooloff, 60, UINT_MAX,
+		&master.critbit_cooloff, 60, 254,
 		"How long time the critbit hasher keeps deleted objheads "
 		"on the cooloff list.\n"
 		"A value of zero disables the ban lurker.",




More information about the varnish-commit mailing list