From 22bc94491832157d907702f32221fcba1781da2e Mon Sep 17 00:00:00 2001 From: ardocrat Date: Fri, 15 May 2026 10:53:20 +0300 Subject: [PATCH] lmdb: sleep 10ms when waiting all opened txs to be closed --- store/src/lmdb.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/store/src/lmdb.rs b/store/src/lmdb.rs index ea07c1c4..d18dd6a0 100644 --- a/store/src/lmdb.rs +++ b/store/src/lmdb.rs @@ -387,6 +387,7 @@ impl Store { thread::sleep(Duration::from_millis(1000)); break; } + thread::sleep(Duration::from_millis(10)); } unsafe {