check for stuck accounts every 2 minutes

This commit is contained in:
Andre Medeiros 2021-10-17 10:18:13 -04:00
parent c8bec95bed
commit f5d2fe5e81

View file

@ -26,7 +26,7 @@ const (
accountEnqueueInterval = 5 // how frequently we want to check (seconds)
subredditEnqueueInterval = 2 * 60 // how frequently we want to check (seconds)
userEnqueueInterval = 2 * 60 // how frequently we want to check (seconds)
stuckAccountEnqueueInterval = 1 * 60 // how frequently we want to check (seconds)
stuckAccountEnqueueInterval = 2 * 60 // how frequently we want to check (seconds)
staleAccountThreshold = 7200 // 2 hours
)