Skip to content

Commit

Permalink
chore(pointcloud_container): move glog_component to autoware_launch (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
kminoda authored Jan 20, 2024
1 parent 1f0a5a1 commit 765cafd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion autoware_launch/launch/pointcloud_container.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from launch.conditions import UnlessCondition
from launch.substitutions import LaunchConfiguration
from launch_ros.actions import ComposableNodeContainer
from launch_ros.descriptions import ComposableNode


def generate_launch_description():
Expand All @@ -37,12 +38,19 @@ def add_launch_arg(name: str, default_value=None):
condition=IfCondition(LaunchConfiguration("use_multithread")),
)

glog_component = ComposableNode(
package="glog_component",
plugin="GlogComponent",
name="glog_component",
namespace="pointcloud_container",
)

pointcloud_container = ComposableNodeContainer(
name=LaunchConfiguration("container_name"),
namespace="/",
package="rclcpp_components",
executable=LaunchConfiguration("container_executable"),
composable_node_descriptions=[],
composable_node_descriptions=[glog_component],
output="both",
)

Expand Down

0 comments on commit 765cafd

Please sign in to comment.