From 60815da862cef416596c1dcaf7401435fa21c180 Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Tue, 10 Feb 2026 20:09:54 -0800 Subject: [PATCH] improvement(terminal): increase workflow logs limit from 1k to 5k per workflow --- 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 8b6078de36..8bd3742042 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,