From c555f5d935901ed8aebf4106972e6ee6fe6af022 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Fri, 1 May 2020 00:29:29 -0800 Subject: [PATCH] Change task interval to every second --- djpianalto.com/goff/goff.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djpianalto.com/goff/goff.go b/djpianalto.com/goff/goff.go index dc042e0..24fd8f9 100644 --- a/djpianalto.com/goff/goff.go +++ b/djpianalto.com/goff/goff.go @@ -79,7 +79,7 @@ func main() { go utils.LoggingHandler(utils.LoggingChannel) // Start the task handler in a goroutine - go utils.ProcessTasks(dg, 10) + go utils.ProcessTasks(dg, 1) fmt.Println("The Bot is now running.") sc := make(chan os.Signal, 1)