Skip to content

Commit

Permalink
fix(autoware_control_validator): fix vehicle info utils (#7417)
Browse files Browse the repository at this point in the history
Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
  • Loading branch information
rej55 authored Jun 10, 2024
1 parent 6584f27 commit c02a669
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void ControlValidator::setupParameters()
}

try {
vehicle_info_ = autoware::vehicle_info_utils::VehicleInfoUtil(*this).getVehicleInfo();
vehicle_info_ = autoware::vehicle_info_utils::VehicleInfoUtils(*this).getVehicleInfo();
} catch (...) {
RCLCPP_ERROR(get_logger(), "failed to get vehicle info. use default value.");
vehicle_info_.front_overhang_m = 0.5;
Expand Down

0 comments on commit c02a669

Please sign in to comment.