From 3ea556bc2454922c15818ec359f5a788c432ba2c Mon Sep 17 00:00:00 2001 From: sakridge Date: Sat, 21 Mar 2020 13:37:52 -0700 Subject: [PATCH] Drop storage lock (#8997) --- runtime/src/accounts_db.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index 701efee775..f4bedc2023 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -1360,6 +1360,7 @@ impl AccountsDB { } } } + drop(storage); drop(index); measure.stop(); inc_new_counter_info!("clean_dead_slots-unref-ms", measure.as_ms() as usize);