Skip to content

Commit

Permalink
Rename parallel fork replay pool to solReplayForkXY
Browse files Browse the repository at this point in the history
where XY is one of {0, ..., num_threads_in_pool}
  • Loading branch information
steviez committed Mar 11, 2024
1 parent 1469a4e commit 6f3f759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/replay_stage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ impl ReplayStage {
} else {
let pool = rayon::ThreadPoolBuilder::new()
.num_threads(MAX_CONCURRENT_FORKS_TO_REPLAY)
.thread_name(|i| format!("solReplay{i:02}"))
.thread_name(|i| format!("solReplayFork{i:02}"))
.build()
.expect("new rayon threadpool");
ForkReplayMode::Parallel(pool)
Expand Down

0 comments on commit 6f3f759

Please sign in to comment.