From 16ea15076d880525837fc5eec8cd3ee545fcd6eb Mon Sep 17 00:00:00 2001 From: Benny Joo Date: Thu, 22 May 2025 14:31:02 -0400 Subject: [PATCH] fix: increase timeout to 800 seconds for workflow reminders (#21476) --- apps/web/vercel.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/web/vercel.json b/apps/web/vercel.json index 389194ffa0..fbe6dae2f6 100644 --- a/apps/web/vercel.json +++ b/apps/web/vercel.json @@ -26,6 +26,15 @@ } ], "functions": { + "app/api/cron/workflows/scheduleEmailReminders/route.ts": { + "maxDuration": 800 + }, + "app/api/cron/workflows/scheduleSMSReminders/route.ts": { + "maxDuration": 800 + }, + "app/api/cron/workflows/scheduleWhatsappReminders/route.ts": { + "maxDuration": 800 + }, "pages/api/trpc/workflows/[trpc].ts": { "maxDuration": 800 },