improvement(terminal): increase workflow logs limit from 1k to 5k per workflow (#3188)

This commit is contained in:
Waleed
2026-02-10 20:11:49 -08:00
committed by GitHub
parent c471627ce1
commit 8a24b56f51

View File

@@ -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,