Reduce 100ms to 1ms. (#4412)

automerge
This commit is contained in:
sakridge 2019-05-23 15:15:26 -07:00 committed by Grimes
parent fb2eac20bb
commit 0b892b2579
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ where
// in tested environments.
if !sustained {
while shared_tx_active_thread_count.load(Ordering::Relaxed) > 0 {
sleep(Duration::from_millis(100));
sleep(Duration::from_millis(1));
}
}