r3559 - branches/2.0/varnish-cache/bin/varnishd

tfheen at projects.linpro.no tfheen at projects.linpro.no
Wed Jan 28 15:12:21 CET 2009


Author: tfheen
Date: 2009-01-28 15:12:20 +0100 (Wed, 28 Jan 2009)
New Revision: 3559

Modified:
   branches/2.0/varnish-cache/bin/varnishd/cache_backend_poll.c
Log:
Merge r3426:

Fix typo (s/timeout/interval/) in default parameters for backend health

Thanks to Jonny @ globo for noticing.



Modified: branches/2.0/varnish-cache/bin/varnishd/cache_backend_poll.c
===================================================================
--- branches/2.0/varnish-cache/bin/varnishd/cache_backend_poll.c	2009-01-28 14:08:32 UTC (rev 3558)
+++ branches/2.0/varnish-cache/bin/varnishd/cache_backend_poll.c	2009-01-28 14:12:20 UTC (rev 3559)
@@ -261,7 +261,7 @@
 	if (vt->probe.timeout == 0.0)
 		vt->probe.timeout = 2.0;
 	if (vt->probe.interval == 0.0)
-		vt->probe.timeout = 5.0;
+		vt->probe.interval = 5.0;
 	if (vt->probe.window == 0)
 		vt->probe.window = 8;
 	if (vt->probe.threshold == 0)



More information about the varnish-commit mailing list