diff --git a/internal/domain/account.go b/internal/domain/account.go index 5892fe3..a38154a 100644 --- a/internal/domain/account.go +++ b/internal/domain/account.go @@ -9,10 +9,10 @@ import ( ) const ( - NotificationCheckInterval = 5 * time.Second // time between notification checks - NotificationCheckTimeout = 60 * time.Second // time before we give up an account check lock - 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 + NotificationCheckInterval = 5 * time.Second // time between notification checks + NotificationCheckTimeout = 5 * time.Minute // time before we give up an account check lock + 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 ) // Account represents an account we need to periodically check in the notifications worker.