Skip to content

Commit

Permalink
Cargo fmt pass
Browse files Browse the repository at this point in the history
  • Loading branch information
sydhds committed Sep 20, 2024
1 parent a23b95e commit 4b98b3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion massa-execution-worker/src/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,9 @@ impl ExecutionManager for ExecutionManagerImpl {
}
// join the execution thread
if let Some(join_handle) = self.thread_handle.take() {
join_handle.join().expect("Execution controller thread panicked");
join_handle
.join()
.expect("Execution controller thread panicked");
}
info!("Execution controller stopped");
}
Expand Down

0 comments on commit 4b98b3c

Please sign in to comment.