feat: increase job completion timeout

This commit is contained in:
Rohit
2025-04-10 14:58:29 +05:30
parent f533fafa0c
commit 132ad7e22d

View File

@@ -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');