Skip to content

Commit

Permalink
Fix join error message (was inconsistent with: VM controller thread)
Browse files Browse the repository at this point in the history
  • Loading branch information
sydhds committed Sep 19, 2024
1 parent 07b093c commit a23b95e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions massa-execution-worker/src/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ pub struct ExecutionManagerImpl {
impl ExecutionManager for ExecutionManagerImpl {
/// stops the worker
fn stop(&mut self) {
info!("stopping Execution controller...");
info!("Stopping Execution controller...");
// notify the worker thread to stop
{
let mut input_wlock = self.input_data.1.lock();
Expand All @@ -544,8 +544,8 @@ impl ExecutionManager for ExecutionManagerImpl {
}
// join the execution thread
if let Some(join_handle) = self.thread_handle.take() {
join_handle.join().expect("VM controller thread panicked");
join_handle.join().expect("Execution controller thread panicked");
}
info!("execution controller stopped");
info!("Execution controller stopped");
}
}

0 comments on commit a23b95e

Please sign in to comment.