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!); } } }