From 7001295fa58119175788b6fb916a347729d0c133 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Wed, 7 Jan 2026 01:22:02 +0700 Subject: [PATCH] feat: longer digest --- apps/orchestrator/src/workflows/digest.email.workflow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/orchestrator/src/workflows/digest.email.workflow.ts b/apps/orchestrator/src/workflows/digest.email.workflow.ts index 67bc6221..f54acbc5 100644 --- a/apps/orchestrator/src/workflows/digest.email.workflow.ts +++ b/apps/orchestrator/src/workflows/digest.email.workflow.ts @@ -32,7 +32,7 @@ export async function digestEmailWorkflow({ while (true) { await condition(() => queue.length > 0); - await sleep(3600000); + await sleep(60000); // Take a snapshot batch and immediately clear queue. const batch = queue.splice(0, queue.length);