Skip to content

Commit

Permalink
Update default empty list args as a workaround for ros2 launch issue
Browse files Browse the repository at this point in the history
  • Loading branch information
marip8 committed Mar 14, 2024
1 parent 9b2da38 commit 2f67992
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions snp_motion_planning/launch/planning_server.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
<arg name="robot_description"/>
<arg name="robot_description_semantic"/>
<arg name="verbose" default="False"/>
<arg name="scan_disabled_contact_links" default="[]" description="List of links that should be allowed to collide with the scan (e.g., link to which the scan is attached) "/>
<arg name="scan_reduced_contact_links" default="[]" description="List of links whose minimum acceptable contact distance to the scan should be set to 0.0 (e.g., the TCP link)"/>
<!-- Add empty string to empty list so parameter exceptions aren't thrown. See https://github.com/ros2/rclcpp/issues/1955 -->
<arg name="scan_disabled_contact_links" default="['']" description="List of links that should be allowed to collide with the scan (e.g., link to which the scan is attached) "/>
<arg name="scan_reduced_contact_links" default="['']" description="List of links whose minimum acceptable contact distance to the scan should be set to 0.0 (e.g., the TCP link)"/>
<!-- Scan Link -->
<arg name="collision_object_type" default="convex_mesh" description="Collision model representation for scan mesh (convex_mesh, mesh, octree)"/>
<arg name="octree_resolution" default="0.010"/>
Expand Down

0 comments on commit 2f67992

Please sign in to comment.