From 5e16f8d9d091eafbdb758a618bcb2301b73d0298 Mon Sep 17 00:00:00 2001 From: Travis Date: Mon, 21 Nov 2016 16:36:17 -0600 Subject: [PATCH] set DefaultPollingInterval back to its original value --- server.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server.go b/server.go index ffde80760..d9399926d 100644 --- a/server.go +++ b/server.go @@ -21,8 +21,7 @@ import ( // Default server settings. const ( DefaultAntiEntropyInterval = 10 * time.Minute - //DefaultPollingInterval = 60 * time.Second - DefaultPollingInterval = 5 * time.Second + DefaultPollingInterval = 60 * time.Second ) // Server represents an index wrapped by a running HTTP server.