keep locks around longer

This commit is contained in:
Andre Medeiros 2022-07-13 15:44:50 -04:00
parent be7bd24ae1
commit 8156756e54

View file

@ -9,10 +9,10 @@ import (
) )
const ( const (
NotificationCheckInterval = 5 * time.Second // time between notification checks NotificationCheckInterval = 5 * time.Second // time between notification checks
NotificationCheckTimeout = 60 * time.Second // time before we give up an account check lock NotificationCheckTimeout = 5 * time.Minute // time before we give up an account check lock
StuckNotificationCheckInterval = 2 * time.Minute // time between stuck notification checks StuckNotificationCheckInterval = 2 * time.Minute // time between stuck notification checks
StaleTokenThreshold = 2 * time.Hour // time an oauth token has to be expired for to be stale StaleTokenThreshold = 2 * time.Hour // time an oauth token has to be expired for to be stale
) )
// Account represents an account we need to periodically check in the notifications worker. // Account represents an account we need to periodically check in the notifications worker.