Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Bence Magyar <[email protected]>
  • Loading branch information
saikishor and bmagyar authored Aug 30, 2024
1 parent 27b6db3 commit 898d3c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controller_manager/src/controller_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ void ControllerManager::init_resource_manager(const std::string & robot_descript
hardware_interface::return_type::ERROR)
{
throw std::runtime_error(
"Failed to set the state of the component : " + component + " to " + state.label());
"Failed to set the initial state of the component : " + component + " to " + state.label());
}
components_to_activate.erase(component);
}
Expand Down Expand Up @@ -381,7 +381,7 @@ void ControllerManager::init_resource_manager(const std::string & robot_descript
hardware_interface::return_type::ERROR)
{
throw std::runtime_error(
"Failed to set the state of the component : " + component + " to " + active_state.label());
"Failed to set the initial state of the component : " + component + " to " + active_state.label());
}
}
robot_description_notification_timer_->cancel();
Expand Down

0 comments on commit 898d3c6

Please sign in to comment.