From b52d4cdbb28ebe7d922e18ae39e7f8fc222d5b25 Mon Sep 17 00:00:00 2001 From: Bryan Matsuo Date: Sun, 10 Aug 2014 19:55:44 -0700 Subject: [PATCH] Documentation: fix timeout tuning TOML example this makes the TOML example for tuning the peer election timeout consistent with the guide's advice and with the other examples. --- Documentation/tuning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/tuning.md b/Documentation/tuning.md index fc5ac7601..8d518c8cc 100644 --- a/Documentation/tuning.md +++ b/Documentation/tuning.md @@ -41,7 +41,7 @@ Or you can set the values within the configuration file: ```toml [peer] heartbeat_interval = 100 -election_timeout = 100 +election_timeout = 500 ``` The values are specified in milliseconds.