From 4fced0ba29c6711135bebb24f8a55c2ab6f60dbf Mon Sep 17 00:00:00 2001 From: Simon J Mudd Date: Fri, 14 Nov 2014 22:30:41 +0100 Subject: [PATCH] interval is configurable so do not say it is not --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 40e39ea..b7a6692 100644 --- a/main.go +++ b/main.go @@ -88,7 +88,7 @@ func main() { lib.Logger.Println("Starting " + lib.MyName()) var state state.State - interval := time.Second * 1 // for the wait, should be configurable + interval := time.Second sigChan := make(chan os.Signal, 1) done := make(chan struct{}) defer close(done) -- 2.7.4