Add some waiting period to the printing task

This commit is contained in:
Omar Abdulla
2025-08-02 22:07:39 +03:00
parent c0ca716163
commit 1b9eff1205
+2
View File
@@ -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;
}
}
};