diff --git a/app/workflows/daemon.ts b/app/workflows/daemon.ts index 1ebaf6c..2996b90 100644 --- a/app/workflows/daemon.ts +++ b/app/workflows/daemon.ts @@ -6,7 +6,7 @@ export async function daemonWorkflow() { // Run for ~55 seconds then exit; the 1-minute cron watchdog restarts it if needed. // This avoids "forever" runs piling up if you redeploy frequently. - for (let i = 0; i < 55; i++) { + for (let i = 0; i < 800; i++) { await runDueTasks(); await sleep("1s"); }