File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,19 @@ btcpp_ros2_interfaces::msg::NodeStatus ConvertNodeStatus(BT::NodeStatus& status)
29
29
{
30
30
case BT::NodeStatus::RUNNING:
31
31
action_status.status = btcpp_ros2_interfaces::msg::NodeStatus::RUNNING;
32
+ break ;
32
33
case BT::NodeStatus::SUCCESS:
33
34
action_status.status = btcpp_ros2_interfaces::msg::NodeStatus::SUCCESS;
35
+ break ;
34
36
case BT::NodeStatus::FAILURE:
35
37
action_status.status = btcpp_ros2_interfaces::msg::NodeStatus::FAILURE;
38
+ break ;
36
39
case BT::NodeStatus::IDLE:
37
40
action_status.status = btcpp_ros2_interfaces::msg::NodeStatus::IDLE;
41
+ break ;
38
42
case BT::NodeStatus::SKIPPED:
39
43
action_status.status = btcpp_ros2_interfaces::msg::NodeStatus::SKIPPED;
44
+ break ;
40
45
}
41
46
42
47
return action_status;
You can’t perform that action at this time.
0 commit comments