From 132ad7e22d2a6796b92a715d61be406418c2591d Mon Sep 17 00:00:00 2001 From: Rohit Date: Thu, 10 Apr 2025 14:58:29 +0530 Subject: [PATCH] feat: increase job completion timeout --- server/src/routes/record.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/routes/record.ts b/server/src/routes/record.ts index 7bd24708..411767c2 100644 --- a/server/src/routes/record.ts +++ b/server/src/routes/record.ts @@ -234,7 +234,7 @@ router.get('/interpret', requireSignIn, async (req: AuthenticatedRequest, res) = logger.log('info', `Queued interpret workflow job: ${jobId}, waiting for completion...`); try { - const result = await waitForJobCompletion(jobId, 'interpret-workflow', 15000); + const result = await waitForJobCompletion(jobId, 'interpret-workflow', 1000000); if (result) { return res.send('interpretation done');