async sleep

This commit is contained in:
Lucas Armand
2025-10-21 18:49:48 -07:00
parent 5b5ef7227a
commit 5edfa968ca
+1 -1
View File
@@ -411,7 +411,7 @@ class Backend:
if line: if line:
await handle_log_line(line.rstrip()) await handle_log_line(line.rstrip())
else: else:
time.sleep(LOG_POLL_INTERVAL) await asyncio.sleep(LOG_POLL_INTERVAL)
########### ###########