We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b1896 commit bbe17c2Copy full SHA for bbe17c2
apps/web/src/jobs/jobExecutors.ts
@@ -31,6 +31,7 @@ export const executeJob = async (job: Job) => {
31
})
32
33
try {
34
+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
35
const executor = jobExecutors[job.name] as JobExecutor<(typeof job)['name']>
36
const result = await executor(job)
37
const { ended, duration } = stopWatch.stop()
0 commit comments