From 2a49830700599de1d569396d51d958bc23ebe5fc Mon Sep 17 00:00:00 2001 From: AshleyFlow Date: Thu, 17 Oct 2024 14:32:31 +0330 Subject: [PATCH] create channel before reading file --- .../lune-std/src/globals/require/context.rs | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/crates/lune-std/src/globals/require/context.rs b/crates/lune-std/src/globals/require/context.rs index ceaeee3..753b373 100644 --- a/crates/lune-std/src/globals/require/context.rs +++ b/crates/lune-std/src/globals/require/context.rs @@ -164,8 +164,6 @@ impl RequireContext { return Self::from_cache(lua, &path_abs).await; } - let content = fs::read_to_string(&path_abs).await?; - // create a broadcast channel { let data_ref = lua @@ -180,6 +178,23 @@ impl RequireContext { } } + let content = match fs::read_to_string(&path_abs).await { + Ok(content) => content, + Err(err) => { + // this error is expected to happen in most cases + // because this function will be retried on the same path + // with different extensions when it fails here + + let data_ref = lua + .app_data_ref::() + .ok_or_else(|| RequireError::RequireContextNotFound)?; + + data_ref.pending.lock().await.remove(&path_abs); + + return Err(err.into()); + } + }; + let thread = lua .load(&content) .set_name(path_abs.to_string_lossy())