mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 18:10:54 +01:00
create channel before reading file
This commit is contained in:
parent
981d323556
commit
2a49830700
1 changed files with 17 additions and 2 deletions
|
@ -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())
|
||||
|
|
Loading…
Add table
Reference in a new issue