From 1b9eff1205c9ced510c6a788244aab051d96057c Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Sat, 2 Aug 2025 22:07:39 +0300 Subject: [PATCH] Add some waiting period to the printing task --- crates/core/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/core/src/main.rs b/crates/core/src/main.rs index 5d87b6d..ae78987 100644 --- a/crates/core/src/main.rs +++ b/crates/core/src/main.rs @@ -241,6 +241,8 @@ where for entry in entries_to_delete.drain(..) { metadata_case_status_write.remove(&entry); } + + tokio::time::sleep(std::time::Duration::from_secs(3)).await; } } };