moveit_task_constructor icon indicating copy to clipboard operation
moveit_task_constructor copied to clipboard

ExecuteTaskSolution action returns no feedback

Open TheUncivil opened this issue 1 year ago • 1 comments

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?

TheUncivil avatar Jul 04 '23 07:07 TheUncivil