From 5edfa968ca2be0c5732eefcf1fc394f8020073c8 Mon Sep 17 00:00:00 2001 From: Lucas Armand Date: Tue, 21 Oct 2025 18:49:48 -0700 Subject: [PATCH] async sleep --- lib/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/backend.py b/lib/backend.py index 29b6b2b..3d4ef92 100644 --- a/lib/backend.py +++ b/lib/backend.py @@ -411,7 +411,7 @@ class Backend: if line: await handle_log_line(line.rstrip()) else: - time.sleep(LOG_POLL_INTERVAL) + await asyncio.sleep(LOG_POLL_INTERVAL) ###########