Skip to content

Commit

Permalink
Increase execution stack size
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Besancon committed Jul 8, 2024
1 parent 7620cbb commit e816175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion massa-execution-worker/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ pub fn start_execution_worker(

// launch the execution thread
let input_data_clone = input_data.clone();
let thread_builder = thread::Builder::new().name("execution".into());
let thread_builder = thread::Builder::new().stack_size(200*1024*1024).name("execution".into()); //200 Mb stack size
let thread_handle = thread_builder
.spawn(move || {
ExecutionThread::new(config, input_data_clone, execution_state, selector).main_loop();
Expand Down

0 comments on commit e816175

Please sign in to comment.