Skip to content

Commit

Permalink
Merge pull request #285 from tier4/sync-awf-latest
Browse files Browse the repository at this point in the history
chore: sync awf-latest
  • Loading branch information
tier4-autoware-public-bot[bot] authored Jan 20, 2024
2 parents f00f55f + 765cafd commit c18b0c6
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 c18b0c6

Please sign in to comment.