From 5f6c18893e649efc717a29770573bc4c91c4e3d8 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Sat, 22 Aug 2026 20:59:37 +0000 Subject: [PATCH] Grow the executor arena for per-copy paint parks --- 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 798222efca..66718c46d3 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 << 23; +const ARENA_CAPACITY: usize = 1 << 25; fn new_arena() -> Arena { Arena::new(ARENA_CAPACITY).unwrap_or_else(|| {