diff --git a/massa-execution-worker/src/worker.rs b/massa-execution-worker/src/worker.rs index 3c814fd5600..1464ed0911c 100644 --- a/massa-execution-worker/src/worker.rs +++ b/massa-execution-worker/src/worker.rs @@ -287,8 +287,11 @@ pub fn start_execution_worker( // launch the execution thread let input_data_clone = input_data.clone(); + + // We set the stack size to 200 Mb instead of the default 2 Mb + // as a temporary workaround fully fixed by https://github.com/massalabs/massa/pull/4729 let thread_builder = thread::Builder::new() - .stack_size(200 * 1024 * 1024) //200 Mb stack size + .stack_size(200 * 1024 * 1024) .name("execution".into()); let thread_handle = thread_builder .spawn(move || {