From 347fea2357342e51e4ceefb8427f19562f1315c0 Mon Sep 17 00:00:00 2001 From: Emily Date: Fri, 30 Aug 2024 17:49:32 +0200 Subject: [PATCH] disable job processing since it's broken --- pages/api/health.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/api/health.ts b/pages/api/health.ts index 5cf72e0..13e75f9 100644 --- a/pages/api/health.ts +++ b/pages/api/health.ts @@ -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') }