Skip to content

Commit ea58dc4

Browse files
mbharatheeshaemuemuJP
authored andcommitted
fix(autoware_obstacle_stop_planner): register obstacle stop planner node with autoware scoping (autowarefoundation#8512)
Register node plugin with autoware scoping Signed-off-by: Mukunda Bharatheesha <mukunda.bharatheesha@nobleo.nl> Signed-off-by: emuemuJP <k.matsumoto.0807@gmail.com>
1 parent d7cc4a2 commit ea58dc4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

launch/tier4_planning_launch/launch/scenario_planning/lane_driving/motion_planning/motion_planning.launch.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179

180180
<group if="$(eval &quot;'$(var motion_stop_planner_type)' == 'obstacle_stop_planner'&quot;)">
181181
<load_composable_node target="/planning/scenario_planning/lane_driving/motion_planning/motion_planning_container">
182-
<composable_node pkg="obstacle_stop_planner" plugin="motion_planning::ObstacleStopPlannerNode" name="obstacle_stop_planner" namespace="">
182+
<composable_node pkg="autoware_obstacle_stop_planner" plugin="autoware::motion_planning::ObstacleStopPlannerNode" name="obstacle_stop_planner" namespace="">
183183
<!-- topic remap -->
184184
<remap from="~/input/trajectory" to="motion_velocity_planner/trajectory"/>
185185
<remap from="~/input/odometry" to="/localization/kinematic_state"/>

planning/autoware_obstacle_stop_planner/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ target_link_libraries(${PROJECT_NAME}
2525
)
2626

2727
rclcpp_components_register_node(${PROJECT_NAME}
28-
PLUGIN "motion_planning::ObstacleStopPlannerNode"
28+
PLUGIN "autoware::motion_planning::ObstacleStopPlannerNode"
2929
EXECUTABLE ${PROJECT_NAME}_node
3030
)
3131

0 commit comments

Comments
 (0)