You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only the error_code is.
This is contrary to the documentation:
# Human readable description of the error code. Contains complementary
# information that is especially useful when execution fails, for instance:
# - INVALID_GOAL: The reason for the invalid goal (e.g., the requested
# trajectory is in the past).
# - INVALID_JOINTS: The mismatch between the expected controller joints
# and those provided in the goal.
# - PATH_TOLERANCE_VIOLATED and GOAL_TOLERANCE_VIOLATED: Which joint
# violated which tolerance, and by how much.
string error_string
The text was updated successfully, but these errors were encountered:
The
error_string
field in the result ofcontrol_msgs/FollowJointTrajectory.action
- http://docs.ros.org/api/control_msgs/html/action/FollowJointTrajectory.html - does not seem to get populated when a goal is aborted because of either PATH_TOLERANCE_VIOLATED or GOAL_TOLERANCE_VIOLATED, i.e duringros_controllers/joint_trajectory_controller/include/joint_trajectory_controller/joint_trajectory_controller_impl.h
Lines 399 to 456 in 12a70ba
Only the
error_code
is.This is contrary to the documentation:
The text was updated successfully, but these errors were encountered: