From f47e9db11e1b66e038423a8b04a308193d044eda Mon Sep 17 00:00:00 2001 From: Kevin Barnoin Date: Fri, 30 Aug 2024 15:41:49 +0200 Subject: [PATCH] fix: missing await (#1478) --- .../migrations/20240830124523-run-duplicate-recruiter-script.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/migrations/20240830124523-run-duplicate-recruiter-script.ts b/server/src/migrations/20240830124523-run-duplicate-recruiter-script.ts index e2a1a16969..dcc340ef4b 100644 --- a/server/src/migrations/20240830124523-run-duplicate-recruiter-script.ts +++ b/server/src/migrations/20240830124523-run-duplicate-recruiter-script.ts @@ -1,5 +1,5 @@ import { addJob } from "job-processor" export const up = async () => { - addJob({ name: "remove:duplicates:recruiters", queued: false }) + await addJob({ name: "remove:duplicates:recruiters", queued: false }) }