don't limit to thread pool when cleaning on startup (#17317)

This commit is contained in:
Jeff Washington (jwash)
2021-05-20 14:36:35 -05:00
committed by GitHub
parent dd13a31a5a
commit 0486df02ba
9 changed files with 78 additions and 70 deletions

View File

@ -100,7 +100,7 @@ fn main() {
for x in 0..iterations {
if clean {
let mut time = Measure::start("clean");
accounts.accounts_db.clean_accounts(None);
accounts.accounts_db.clean_accounts(None, false);
time.stop();
println!("{}", time);
for slot in 0..num_slots {