Skip to content

Commit

Permalink
Fix for lack of anyhow import in runtime.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickNercessian committed May 3, 2024
1 parent 66f8961 commit 06ed3e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pub async fn run_js_module(
.unwrap()
.is_match(&bootstrap_options.station_id)
{
return Err(anyhow!("Invalid station_id format"));
return Err(AnyError::from("Invalid station_id format"));
}

let blob_store = Arc::new(BlobStore::default());
Expand Down

0 comments on commit 06ed3e0

Please sign in to comment.