Skip to content

Commit

Permalink
fix: Executor::spawn() should not use spawn_checked()
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveLauC committed Dec 10, 2024
1 parent 14ea9f4 commit 2d930a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions clippy.toml

This file was deleted.

2 changes: 1 addition & 1 deletion src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ impl Executor {
let result = match self {
Executor::Wet(c) => {
debug!("Running {:?}", c);
c.spawn_checked().map(ExecutorChild::Wet)?
c.spawn().map(ExecutorChild::Wet)?
}
Executor::Dry(c) => {
c.dry_run();
Expand Down

0 comments on commit 2d930a1

Please sign in to comment.