Skip to content

Commit

Permalink
fix(lane_change): fix RTC safety status
Browse files Browse the repository at this point in the history
Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
  • Loading branch information
rej55 committed Jun 12, 2024
1 parent 7810054 commit fc437e1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ BehaviorModuleOutput LaneChangeInterface::plan()
const auto path =
assignToCandidate(module_type_->getLaneChangePath(), module_type_->getEgoPosition());
updateRTCStatus(
path.start_distance_to_path_change, path.finish_distance_to_path_change,
post_process_safety_status_.is_safe, State::RUNNING);
path.start_distance_to_path_change, path.finish_distance_to_path_change, true,
State::RUNNING);
}

return output;
Expand Down

0 comments on commit fc437e1

Please sign in to comment.