From 8dac066149ebe6897eebb93e030390233bbb5019 Mon Sep 17 00:00:00 2001 From: Steven Czabaniuk Date: Thu, 29 Feb 2024 00:42:20 -0600 Subject: [PATCH] Rename threads in pool to solTxReplay --- ledger/src/blockstore_processor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ledger/src/blockstore_processor.rs b/ledger/src/blockstore_processor.rs index ae70c8c015be99..d89022141ef3cc 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!("solTxReplay{i:02}")) .build() .unwrap(); }