From 41211d75c5b72ca426f4b58bc9558bbbfe6ee9e6 Mon Sep 17 00:00:00 2001 From: liuwei Date: Tue, 27 May 2025 09:17:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index e4cb5d6..95516e0 100644 --- a/main.py +++ b/main.py @@ -67,7 +67,6 @@ def main(): except Exception as e: robot.LOG.error(f"Dashboard服务器启动失败: {e}") - asyncio.run(async_job.run_all()) try: robot.LOG.debug(f"开始启动GlancesMonitor") # 初始化 Glances 监控 @@ -86,6 +85,7 @@ def main(): except Exception as e: robot.LOG.error(f"GlancesMonitor服务器启动失败: {e}") + asyncio.run(async_job.run_all()) # 让机器人一直跑 robot.keep_running_and_block_process()