Commit 98dfa463 authored by Tollef Fog Heen's avatar Tollef Fog Heen

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

Thanks to Jonny @ globo for noticing.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3426 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 4da32c89
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment