Skip to content

Commit 60815da

Browse files
committed
improvement(terminal): increase workflow logs limit from 1k to 5k per workflow
1 parent c471627 commit 60815da

File tree

1 file changed

+1
-1
lines changed
  • apps/sim/stores/terminal/console

1 file changed

+1
-1
lines changed

apps/sim/stores/terminal/console/store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const logger = createLogger('TerminalConsoleStore')
1616
* Maximum number of console entries to keep per workflow.
1717
* Keeps the stored data size reasonable and improves performance.
1818
*/
19-
const MAX_ENTRIES_PER_WORKFLOW = 1000
19+
const MAX_ENTRIES_PER_WORKFLOW = 5000
2020

2121
const updateBlockOutput = (
2222
existingOutput: NormalizedBlockOutput | undefined,

0 commit comments

Comments
 (0)