Skip to content

Commit

Permalink
Fix message for ExecutionManager
Browse files Browse the repository at this point in the history
  • Loading branch information
sydhds committed Oct 2, 2024
1 parent 2664915 commit 8fca245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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 @@ -546,6 +546,6 @@ impl ExecutionManager for ExecutionManagerImpl {
if let Some(join_handle) = self.thread_handle.take() {
join_handle.join().expect("VM controller thread panicked");
}
info!("execution controller stopped");
info!("Execution controller stopped");
}
}

0 comments on commit 8fca245

Please sign in to comment.