From 01da817f61c0c93aed8951e5de980d9a4d0d2e60 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Sat, 22 Aug 2026 19:11:48 +0000 Subject: [PATCH] Grow the executor arena for fold snapshots --- node-graph/interpreted-executor/src/dynamic_executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-graph/interpreted-executor/src/dynamic_executor.rs b/node-graph/interpreted-executor/src/dynamic_executor.rs index c2f5664514..798222efca 100644 --- a/node-graph/interpreted-executor/src/dynamic_executor.rs +++ b/node-graph/interpreted-executor/src/dynamic_executor.rs @@ -15,7 +15,7 @@ use std::collections::{HashMap, HashSet}; use std::error::Error; use std::sync::{Arc, Mutex, PoisonError}; -const ARENA_CAPACITY: usize = 1 << 20; +const ARENA_CAPACITY: usize = 1 << 23; fn new_arena() -> Arena { Arena::new(ARENA_CAPACITY).unwrap_or_else(|| {