From bb4336bb6477cd08356b7e0258f6b7363c655bcd Mon Sep 17 00:00:00 2001 From: Matthieu 'JP' DERASSE Date: Mon, 5 Jun 2023 20:45:36 +0000 Subject: [PATCH] feat(ticket): Lower ticker to 15s --- alert/alert.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alert/alert.go b/alert/alert.go index a822c99..c2801fb 100644 --- a/alert/alert.go +++ b/alert/alert.go @@ -32,7 +32,7 @@ func Init(alertChan chan api.Availability) { } // define an interval and the ticker for this interval - interval := time.Duration(1) * time.Minute + interval := time.Duration(15) * time.Second // create a new Ticker tk := time.NewTicker(interval)