From 865e3035b9aced51cba3cee9fd06424516413264 Mon Sep 17 00:00:00 2001 From: whyour Date: Mon, 1 Jun 2026 23:24:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E6=9C=BA=E8=BF=90=E8=A1=8C=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=90=8C=E6=97=B6=E5=BC=80=E5=A7=8B=E8=BF=90=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/services/cron.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/services/cron.ts b/back/services/cron.ts index 9bc34a09..866ffb21 100644 --- a/back/services/cron.ts +++ b/back/services/cron.ts @@ -793,7 +793,7 @@ export default class CronService { { where: { id: bootTasks.map((t) => t.id!) } }, ); for (const task of bootTasks) { - await this.runSingle(task.id!); + this.runSingle(task.id!); } } }