Reduce the eagerness of the ActiveRitualTracker by having it scan for events every 2mins. instead of every 20s.

pull/3361/head
derekpierre 2024-01-25 09:10:41 -05:00 committed by KPrasch
parent c69017155a
commit 95ac122e49
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class EventActuator(EventScanner):
class EventScannerTask(SimpleTask):
"""Task that runs the event scanner in a looping call."""
INTERVAL = 20 # seconds
INTERVAL = 120 # seconds
def __init__(self, scanner: Callable, *args, **kwargs):
self.scanner = scanner