From 94e735f9358c006a942f9a1d9338caaa3ac73a18 Mon Sep 17 00:00:00 2001 From: brooks Date: Tue, 30 Jan 2024 16:57:18 -0500 Subject: [PATCH] Replaces bare Arc::default() in CacheHashData::new() --- accounts-db/src/cache_hash_data.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts-db/src/cache_hash_data.rs b/accounts-db/src/cache_hash_data.rs index e9675b9fd22798..a0e8507c50520e 100644 --- a/accounts-db/src/cache_hash_data.rs +++ b/accounts-db/src/cache_hash_data.rs @@ -214,7 +214,7 @@ impl CacheHashData { cache_dir, pre_existing_cache_files: Arc::new(Mutex::new(HashSet::default())), deletion_policy, - stats: Arc::default(), + stats: Arc::new(CacheHashDataStats::default()), }; result.get_cache_files();