Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ExecuteTaskSolution action returns no feedback #475

Open
TheUncivil opened this issue Jul 4, 2023 · 2 comments
Open

ExecuteTaskSolution action returns no feedback #475

TheUncivil opened this issue Jul 4, 2023 · 2 comments

Comments

@TheUncivil
Copy link

According to the ExecuteTaskSolution action definition, it should provide the IDs and numbers of finished subtrajectories (stages?) as feedback while executing the action. I'm attempting to print that information like so:

void MtcClient::cbFeedback(
  rclcpp_action::ClientGoalHandle<moveit_task_constructor_msgs::action::ExecuteTaskSolution>::SharedPtr p_goal_handle,
  const std::shared_ptr<const moveit_task_constructor_msgs::action::ExecuteTaskSolution::Feedback> p_feedback)
{
  RCLCPP_INFO(
    p_node_->get_logger(), "Received feedback: sub_id %i,  sub_no %i", p_feedback->sub_id,
    p_feedback->sub_no);
}

However, nothing is being printed. As far as I can tell, I'm receiving no feedback at all, even as the action executes normally.

What is the reason for this? Is feedback not yet implemented, or should I enable it somehow?

@rhaschke
Copy link
Contributor

rhaschke commented Jul 4, 2023

@rhaschke
Copy link
Contributor

Closed via #653.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants