diff --git a/node-graph/interpreted-executor/src/dynamic_executor.rs b/node-graph/interpreted-executor/src/dynamic_executor.rs index 66718c46d3..49f6558ce4 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 << 25; +const ARENA_CAPACITY: usize = 1 << 27; fn new_arena() -> Arena { Arena::new(ARENA_CAPACITY).unwrap_or_else(|| {