SpectralStrategy更新

This commit is contained in:
2025-11-29 16:35:02 +08:00
parent 29199f9492
commit 687d8a180b
35 changed files with 40381 additions and 1153 deletions

View File

@@ -64,7 +64,7 @@ async def start_scheduler():
# 任务 1: 每天 08:55
scheduler.add_job(
scheduled_restart_task,
CronTrigger(hour=8, minute=55),
CronTrigger(hour=8, minute=58),
id="restart_morning",
replace_existing=True
)
@@ -72,7 +72,7 @@ async def start_scheduler():
# 任务 2: 每天 20:55
scheduler.add_job(
scheduled_restart_task,
CronTrigger(hour=20, minute=55),
CronTrigger(hour=20, minute=58),
id="restart_evening",
replace_existing=True
)