From e8e140199547542b5ac1755dd5df66060a421c10 Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Thu, 22 Sep 2016 23:51:55 +0100 Subject: [PATCH] Increase journal monitor frequency --- monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor.py b/monitor.py index 4f1a6b21..b8796deb 100644 --- a/monitor.py +++ b/monitor.py @@ -60,7 +60,7 @@ else: class EDLogs(FileSystemEventHandler): - _POLL = 5 # New system gets posted to log file before hyperspace ends, so don't need to poll too often + _POLL = 1 # Polling is cheap, so do it often def __init__(self): FileSystemEventHandler.__init__(self) # futureproofing - not need for current version of watchdog