Skip to content

Commit

Permalink
fix(autoware_obstacle_stop_planner): register obstacle stop planner n…
Browse files Browse the repository at this point in the history
…ode with autoware scoping (#8512)

Register node plugin with autoware scoping

Signed-off-by: Mukunda Bharatheesha <[email protected]>
  • Loading branch information
mbharatheesha authored Sep 4, 2024
1 parent 649aeca commit a6f218a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@

<group if="$(eval &quot;'$(var motion_stop_planner_type)' == 'obstacle_stop_planner'&quot;)">
<load_composable_node target="/planning/scenario_planning/lane_driving/motion_planning/motion_planning_container">
<composable_node pkg="obstacle_stop_planner" plugin="motion_planning::ObstacleStopPlannerNode" name="obstacle_stop_planner" namespace="">
<composable_node pkg="autoware_obstacle_stop_planner" plugin="autoware::motion_planning::ObstacleStopPlannerNode" name="obstacle_stop_planner" namespace="">
<!-- topic remap -->
<remap from="~/input/trajectory" to="motion_velocity_planner/trajectory"/>
<remap from="~/input/odometry" to="/localization/kinematic_state"/>
Expand Down
2 changes: 1 addition & 1 deletion planning/autoware_obstacle_stop_planner/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ target_link_libraries(${PROJECT_NAME}
)

rclcpp_components_register_node(${PROJECT_NAME}
PLUGIN "motion_planning::ObstacleStopPlannerNode"
PLUGIN "autoware::motion_planning::ObstacleStopPlannerNode"
EXECUTABLE ${PROJECT_NAME}_node
)

Expand Down

0 comments on commit a6f218a

Please sign in to comment.