We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/BehaviorTree/BehaviorTree.ROS2/blob/cc31ea7b97947f1aac6e8c37df6cec379c84a7d9/behaviortree_ros2/include/behaviortree_ros2/bt_action_node.hpp#L549C3-L550C71
When the goal is rejected by the server, this goal_handle_ is nullptr. The function assync_get_result() then goes to an exception.
goal_handle_
nullptr
function assync_get_result()
It seems that checking for goal_handle_==nullptr then returning correct this problem.
goal_handle_==nullptr
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/BehaviorTree/BehaviorTree.ROS2/blob/cc31ea7b97947f1aac6e8c37df6cec379c84a7d9/behaviortree_ros2/include/behaviortree_ros2/bt_action_node.hpp#L549C3-L550C71
When the goal is rejected by the server, this
goal_handle_
isnullptr
. Thefunction assync_get_result()
then goes to an exception.It seems that checking for
goal_handle_==nullptr
then returning correct this problem.The text was updated successfully, but these errors were encountered: