Fix runway chart collapse and ops cleanup

This commit is contained in:
2569718930@qq.com
2026-05-29 18:40:29 +08:00
parent 23b5fafb25
commit f8f5035225
6 changed files with 288 additions and 19 deletions
+3 -1
View File
@@ -24,7 +24,9 @@ def _cleanup_stale() -> None:
def _start_cleanup() -> None:
_cleanup_stale()
threading.Timer(_cleanup_interval_sec, _start_cleanup).start()
timer = threading.Timer(_cleanup_interval_sec, _start_cleanup)
timer.daemon = True
timer.start()
_start_cleanup()