Standardize Thread Naming - Prioritization Fee Cache (#30890)

Thread naming in accordance with #27237
This commit is contained in:
Andrew Fitzgerald 2023-03-24 13:48:55 -07:00 committed by GitHub
parent 24be8508bb
commit 2a05b25732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ impl PrioritizationFeeCache {
let metrics_clone = metrics.clone();
let service_thread = Some(
Builder::new()
.name("prioritization-fee-cache-servicing-thread".to_string())
.name("solPrFeeCachSvc".to_string())
.spawn(move || {
Self::service_loop(cache_clone, receiver, metrics_clone);
})