Skip to content

Commit

Permalink
added namespacing to point_type_adapter_container
Browse files Browse the repository at this point in the history
  • Loading branch information
JonSmet committed Apr 12, 2024
1 parent 9a5b422 commit 60e3f67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@


import launch
from carma_ros2_utils.launch.get_current_namespace import GetCurrentNamespace
from launch_ros.actions import ComposableNodeContainer
from launch_ros.descriptions import ComposableNode

Expand All @@ -23,7 +24,7 @@ def generate_launch_description():
"""Generate launch description with a single component."""
container = ComposableNodeContainer(
name='point_type_adapter_container',
namespace='',
namespace=GetCurrentNamespace(),
package='rclcpp_components',
executable='component_container',
composable_node_descriptions=[
Expand Down
1 change: 1 addition & 0 deletions AutowareAuto/src/tools/point_type_adapter/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<depend>sensor_msgs</depend>
<depend>autoware_auto_common</depend>
<depend>point_cloud_msg_wrapper</depend>
<depend>carma_ros2_utils</depend>

<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_lint_auto</test_depend>
Expand Down

0 comments on commit 60e3f67

Please sign in to comment.