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
When choosing the controller manager namespace from the pulldown, the entire rqt GUI that hosts rqt_joint_trajectory_controller crashes, not just the plugin.
Traceback (most recent call last):
File "/opt/ros/melodic/lib/python2.7/dist-packages/rqt_joint_trajectory_controller/joint_trajectory_controller.py", line 274, in _on_cm_change
self._update_jtc_list()
File "/opt/ros/melodic/lib/python2.7/dist-packages/rqt_joint_trajectory_controller/joint_trajectory_controller.py", line 246, in _update_jtc_list
self._robot_joint_limits = get_joint_limits() # Lazy evaluation
File "/opt/ros/melodic/lib/python2.7/dist-packages/rqt_joint_trajectory_controller/joint_limits_urdf.py", line 21, in get_joint_limits
description = rospy.get_param(key)
File "/opt/ros/melodic/lib/python2.7/dist-packages/rospy/client.py", line 467, in get_param
return _param_server[param_name] #MasterProxy does all the magic for us
File "/opt/ros/melodic/lib/python2.7/dist-packages/rospy/msproxy.py", line 123, in __getitem__
raise KeyError(key)
KeyError: 'robot_description'
The text was updated successfully, but these errors were encountered:
The particular failure example in the OP was seen when running this tutorial (osrf/ariac/wiki/2019/tutorials) that shows how to work around (by passing the parameter(?) rqt robot_description:=/ariac/arm1/robot_description). But that's just an operational workaround I think.
When there's no global robot_description specified nor the param name "remapping" is in effect with robot_description:=/ariac/arm1/robot_description, the node throws an ugly exception that makes it all the way to the top of the host app?
When there's no global robot_description specified nor the param name "remapping" is in effect with robot_description:=/ariac/arm1/robot_description, the node throws an ugly exception that makes it all the way to the top of the host app?
Not just the "ugly" exception but the process dies.
If you mean "host app" as in the rqt's window, not just rqt_joint_trajectory_controller plugin view, then yes.
I have these ROS params regarding Robot description.
When choosing the controller manager namespace from the pulldown, the entire rqt GUI that hosts
rqt_joint_trajectory_controller
crashes, not just the plugin.The text was updated successfully, but these errors were encountered: