From 8a24b56f516332edd8dc0e3a5607e168a89799f2 Mon Sep 17 00:00:00 2001 From: Waleed Date: Tue, 10 Feb 2026 20:11:49 -0800 Subject: [PATCH] improvement(terminal): increase workflow logs limit from 1k to 5k per workflow (#3188) --- apps/sim/stores/terminal/console/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/stores/terminal/console/store.ts b/apps/sim/stores/terminal/console/store.ts index 8b6078de3..8bd374204 100644 --- a/apps/sim/stores/terminal/console/store.ts +++ b/apps/sim/stores/terminal/console/store.ts @@ -16,7 +16,7 @@ const logger = createLogger('TerminalConsoleStore') * Maximum number of console entries to keep per workflow. * Keeps the stored data size reasonable and improves performance. */ -const MAX_ENTRIES_PER_WORKFLOW = 1000 +const MAX_ENTRIES_PER_WORKFLOW = 5000 const updateBlockOutput = ( existingOutput: NormalizedBlockOutput | undefined,