From d8378e50a5d575b8d9e0e5599973e71d7d230c20 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Wed, 21 Jun 2023 12:23:58 +0800 Subject: [PATCH] fix --- app/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/main.py b/app/main.py index 370a7741..cfca054e 100644 --- a/app/main.py +++ b/app/main.py @@ -46,16 +46,16 @@ def shutdown_server(): """ 服务关闭 """ - # 停止定时服务 - Scheduler().stop() - # 停止插件 - PluginManager().stop() # 停止模块 ModuleManager().stop() + # 停止插件 + PluginManager().stop() # 停止事件消费 Command().stop() # 停止虚拟显示 DisplayHelper().stop() + # 停止定时服务 + Scheduler().stop() @App.on_event("startup")