From: tfheen Date: Wed, 28 Jan 2009 14:12:20 +0000 (+0000) Subject: Merge r3426: X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92c42e4c442e828d43c088497a26b1d163b3241c;p=varnish Merge r3426: Fix typo (s/timeout/interval/) in default parameters for backend health Thanks to Jonny @ globo for noticing. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/branches/2.0@3559 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/cache_backend_poll.c b/varnish-cache/bin/varnishd/cache_backend_poll.c index 6afce413..659ba2bd 100644 --- a/varnish-cache/bin/varnishd/cache_backend_poll.c +++ b/varnish-cache/bin/varnishd/cache_backend_poll.c @@ -261,7 +261,7 @@ vbp_wrk_poll_backend(void *priv) 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)