From 26e963f436dbe9a6fa43b0b62d4e27c31a93c03d Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" <75863576+jeffwashington@users.noreply.github.com> Date: Fri, 13 Aug 2021 10:07:47 -0500 Subject: [PATCH] remove par iter for 32k wide code path (#18764) --- runtime/src/accounts_db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index 37323871b5..06d6313186 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -5021,7 +5021,7 @@ impl AccountsDb { let time = AtomicU64::new(0); ( accum - .into_par_iter() + .into_iter() .map(|mut items| { let mut sort_time = Measure::start("sort"); {