diff --git a/ledger/src/blockstore_processor.rs b/ledger/src/blockstore_processor.rs index ae70c8c015be99..19fb9ee1dde23f 100644 --- a/ledger/src/blockstore_processor.rs +++ b/ledger/src/blockstore_processor.rs @@ -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!("solReplayTx{i:02}")) .build() .unwrap(); }