Skip to content

Commit

Permalink
clean up more
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Jan 12, 2021
1 parent 9ec8fbe commit d88580d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/ops/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ async fn op_run_status(
.get::<ChildResource>(rid)
.ok_or_else(bad_resource_id)?;
let mut child = resource.borrow_mut().await;
let run_status = child.wait().await.map_err(AnyError::from)?;
let run_status = child.wait().await?;
let code = run_status.code();

#[cfg(unix)]
Expand Down

0 comments on commit d88580d

Please sign in to comment.