Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions turtlebot4_node/include/turtlebot4_node/action.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,8 @@ class Turtlebot4Action
* @input future - Shared future with goal response
*/
void goal_response_callback(
std::shared_future<typename rclcpp_action::ClientGoalHandle<ActionT>::SharedPtr> future)
typename rclcpp_action::ClientGoalHandle<ActionT>::SharedPtr goal_handle)
{
auto goal_handle = future.get();
if (!goal_handle) {
RCLCPP_ERROR(nh_->get_logger(), "%s goal was rejected by server", action_.c_str());
} else {
Expand Down