unlock mutex before using async

This commit is contained in:
highflowey 2024-08-23 15:27:51 +03:30
parent edb3041090
commit 9414a9fc29

View file

@ -102,8 +102,13 @@ impl RequireContext {
let pending = data_ref.pending.try_lock()?;
if let Some(a) = pending.get(&path_abs) {
a.subscribe().recv().await?;
if let Some(sender) = pending.get(&path_abs) {
let mut receiver = sender.subscribe();
// unlock mutex before using async
drop(pending);
receiver.recv().await?;
}
}