Skip to content

Commit

Permalink
disable job processing since it's broken
Browse files Browse the repository at this point in the history
  • Loading branch information
neongreen committed Aug 30, 2024
1 parent 9e9733c commit 347fea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/api/health.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let initCalled = false
export default async function handler(req, res: NextApiResponse) {
if (!initCalled) {
initCalled = true
await startJobQueueProcessing()
// await startJobQueueProcessing()
}
res.send('OK')
}

0 comments on commit 347fea2

Please sign in to comment.