create channel before reading file

This commit is contained in:
AshleyFlow 2024-10-17 14:32:31 +03:30
parent 981d323556
commit 2a49830700

View file

@ -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::<RequireContextData>()
.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())