mirror of https://github.com/nucypher/nucypher.git
Reduce the eagerness of the ActiveRitualTracker by having it scan for events every 2mins. instead of every 20s.
parent
c69017155a
commit
95ac122e49
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue