Skip to content

Commit

Permalink
rename parameter name to fit with autoware_launch
Browse files Browse the repository at this point in the history
Signed-off-by: yoshiri <[email protected]>
  • Loading branch information
YoshiRi committed Dec 15, 2023
1 parent 132d425 commit 0f97128
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ def launch_setup(context, *args, **kwargs):
],
"output_frame": LaunchConfiguration("base_frame"),
"input_twist_topic_type": "twist",
"publish_synchronized_pointcloud": LaunchConfiguration("publish_synchronized_pointcloud"),
"publish_synchronized_pointcloud": LaunchConfiguration(
"concatenate_node__publish_synchronized_pointcloud"
),
}
],
extra_arguments=[{"use_intra_process_comms": LaunchConfiguration("use_intra_process")}],
Expand Down Expand Up @@ -88,7 +90,7 @@ def add_launch_arg(name: str, default_value=None):
add_launch_arg("use_intra_process", "False")
add_launch_arg("use_pointcloud_container", "False")
add_launch_arg("container_name", "pointcloud_preprocessor_container")
add_launch_arg("publish_synchronized_pointcloud", "False")
add_launch_arg("concatenate_node__publish_synchronized_pointcloud", "False")

set_container_executable = SetLaunchConfiguration(
"container_executable",
Expand Down

0 comments on commit 0f97128

Please sign in to comment.