Skip to content

Commit

Permalink
fix: missing await (#1478)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevbarns authored Aug 30, 2024
1 parent d184d5b commit f47e9db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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 })
}

0 comments on commit f47e9db

Please sign in to comment.