From 5bdeb180b5b145ab38ff0f7a7cd4781d22f0824b Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Sun, 12 Nov 2023 22:38:27 +0000 Subject: [PATCH] Inotify is still missing some changes, prefer polling for now. --- cista/watching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cista/watching.py b/cista/watching.py index caaf97f..aa50005 100644 --- a/cista/watching.py +++ b/cista/watching.py @@ -337,7 +337,7 @@ async def abroadcast(msg): async def start(app, loop): config.load_config() - use_inotify = sys.platform == "linux" + use_inotify = False and sys.platform == "linux" app.ctx.watcher = threading.Thread( target=watcher_thread if use_inotify else watcher_thread_poll, args=[loop],