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
If any transition callback is being executed, then calling another state transition service should fail.
For example, if onConfigure or onManagedConfigure is being executed, then calling my_node/start should fail, as the node is not ready to be started, it should also return an appropriate error together with the failure message.
This should only be possible at the beginning of the robot_activity operation (init call) as transitions can only be invoked by ROS service, which are all grouped on a separate callback queue and a separate thread.
The text was updated successfully, but these errors were encountered:
If any transition callback is being executed, then calling another state transition service should fail.
For example, if
onConfigure
oronManagedConfigure
is being executed, then callingmy_node/start
should fail, as the node is not ready to be started, it should also return an appropriate error together with the failure message.This should only be possible at the beginning of the robot_activity operation (
init
call) as transitions can only be invoked by ROS service, which are all grouped on a separate callback queue and a separate thread.The text was updated successfully, but these errors were encountered: