diff --git a/control/autoware_control_validator/launch/control_validator.launch.xml b/control/autoware_control_validator/launch/control_validator.launch.xml index 02d6f932aa935..651398a17fc78 100644 --- a/control/autoware_control_validator/launch/control_validator.launch.xml +++ b/control/autoware_control_validator/launch/control_validator.launch.xml @@ -1,11 +1,11 @@ - + - + diff --git a/launch/tier4_control_launch/launch/control.launch.py b/launch/tier4_control_launch/launch/control.launch.py index 8818811d54e07..2a3f334d0a6e9 100644 --- a/launch/tier4_control_launch/launch/control.launch.py +++ b/launch/tier4_control_launch/launch/control.launch.py @@ -50,9 +50,7 @@ def launch_setup(context, *args, **kwargs): vehicle_cmd_gate_param = yaml.safe_load(f)["/**"]["ros__parameters"] with open(LaunchConfiguration("lane_departure_checker_param_path").perform(context), "r") as f: lane_departure_checker_param = yaml.safe_load(f)["/**"]["ros__parameters"] - with open( - LaunchConfiguration("autoware_control_validator_param_path").perform(context), "r" - ) as f: + with open(LaunchConfiguration("control_validator_param_path").perform(context), "r") as f: autoware_control_validator_param = yaml.safe_load(f)["/**"]["ros__parameters"] with open( LaunchConfiguration("operation_mode_transition_manager_param_path").perform(context), "r" @@ -466,7 +464,7 @@ def add_launch_arg(name: str, default_value=None, description=None): add_launch_arg("lon_controller_param_path") add_launch_arg("vehicle_cmd_gate_param_path") add_launch_arg("lane_departure_checker_param_path") - add_launch_arg("autoware_control_validator_param_path") + add_launch_arg("control_validator_param_path") add_launch_arg("operation_mode_transition_manager_param_path") add_launch_arg("shift_decider_param_path") add_launch_arg("obstacle_collision_checker_param_path")