Skip to content

Commit

Permalink
Rename threads in pool to solTxReplay
Browse files Browse the repository at this point in the history
  • Loading branch information
steviez committed Mar 3, 2024
1 parent d503667 commit 8dac066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ledger/src/blockstore_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const MAX_THREAD_POOL_SIZE: usize = 24;
lazy_static! {
static ref PAR_THREAD_POOL: ThreadPool = rayon::ThreadPoolBuilder::new()
.num_threads(get_max_thread_count().min(MAX_THREAD_POOL_SIZE))
.thread_name(|i| format!("solBstoreProc{i:02}"))
.thread_name(|i| format!("solTxReplay{i:02}"))
.build()
.unwrap();
}
Expand Down

0 comments on commit 8dac066

Please sign in to comment.