Skip to content

Commit

Permalink
Fixed autoware_glog_compontnt
Browse files Browse the repository at this point in the history
Signed-off-by: Shintaro Sakoda <[email protected]>
  • Loading branch information
SakodaShintaro committed Dec 6, 2024
1 parent 0bbdbe1 commit eae47d5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions launch/tier4_control_launch/launch/control.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<group>
<!-- set a control container to run all required components in the same process -->
<node_container pkg="rclcpp_components" exec="$(var container_executable)" name="control_container" namespace="">
<composable_node pkg="autoware_glog_component" plugin="GlogComponent" name="glog_control_container_component"/>
<composable_node pkg="autoware_glog_component" plugin="autoware::glog_component::GlogComponent" name="glog_control_container_component"/>
<!-- shift decider -->
<composable_node pkg="autoware_shift_decider" plugin="autoware::shift_decider::ShiftDecider" name="autoware_shift_decider">
<remap from="input/control_cmd" to="/control/trajectory_follower/control_cmd"/>
Expand Down Expand Up @@ -177,7 +177,7 @@
<group>
<!-- set a control check container to run all control checker components in the same process -->
<node_container pkg="rclcpp_components" exec="$(var container_executable)" name="control_check_container" namespace="">
<composable_node pkg="autoware_glog_component" plugin="GlogComponent" name="glog_control_check_container_component"/>
<composable_node pkg="autoware_glog_component" plugin="autoware::glog_component::GlogComponent" name="glog_control_check_container_component"/>
</node_container>

<!-- lane departure checker -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@
<extra_arg name="use_intra_process_comms" value="false"/>
</composable_node>

<composable_node pkg="autoware_glog_component" plugin="GlogComponent" name="glog_component" namespace=""/>
<composable_node pkg="autoware_glog_component" plugin="autoware::glog_component::GlogComponent" name="glog_component" namespace=""/>
</node_container>

<group if="$(var launch_compare_map_pipeline)">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<let name="motion_velocity_planner_launch_modules" value="$(eval &quot;'$(var motion_velocity_planner_launch_modules)' + '$(var launch_module_list_end)'&quot;)"/>

<node_container pkg="rclcpp_components" exec="$(var container_type)" name="motion_planning_container" namespace="" args="" output="screen">
<composable_node pkg="autoware_glog_component" plugin="GlogComponent" name="glog_component" namespace=""/>
<composable_node pkg="autoware_glog_component" plugin="autoware::glog_component::GlogComponent" name="glog_component" namespace=""/>
</node_container>

<!-- path smoothing -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<extra_arg name="use_intra_process_comms" value="false"/>
</composable_node>

<composable_node pkg="autoware_glog_component" plugin="GlogComponent" name="glog_component" namespace=""/>
<composable_node pkg="autoware_glog_component" plugin="autoware::glog_component::GlogComponent" name="glog_component" namespace=""/>
</node_container>
</group>
</launch>
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<remap from="~/input/operation_mode_state" to="/system/operation_mode/state"/>
<remap from="~/output/current_velocity_limit_mps" to="/planning/scenario_planning/current_max_velocity"/>
</composable_node>
<composable_node pkg="autoware_glog_component" plugin="GlogComponent" name="glog_component" namespace=""/>
<composable_node pkg="autoware_glog_component" plugin="autoware::glog_component::GlogComponent" name="glog_component" namespace=""/>
</node_container>
</group>
</group>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
<remap from="~/planner/route" to="route"/>
<remap from="~/planner/state" to="state"/>
</composable_node>
<composable_node pkg="autoware_glog_component" plugin="GlogComponent" name="glog_component" namespace=""/>
<composable_node pkg="autoware_glog_component" plugin="autoware::glog_component::GlogComponent" name="glog_component" namespace=""/>
</node_container>
</launch>

0 comments on commit eae47d5

Please sign in to comment.