Skip to content

Commit

Permalink
fix(behavior_path_start_planner_module): check if pull_out_path is em…
Browse files Browse the repository at this point in the history
…pty (#6318)

check pull_out_path is empty

Signed-off-by: beyza <bnk@leodrive.ai>
Co-authored-by: beyza <bnk@leodrive.ai>
  • Loading branch information
beyzanurkaya and beyzanurkaya authored Feb 5, 2024
1 parent 7e77488 commit b9c0a6d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1202,6 +1202,9 @@ bool StartPlannerModule::isSafePath() const
// TODO(Sugahara): should safety check for backward path

const auto pull_out_path = getCurrentPath();
if (pull_out_path.points.empty()) {
return false;
}
const auto & current_pose = planner_data_->self_odometry->pose.pose;
const double current_velocity = std::hypot(
planner_data_->self_odometry->twist.twist.linear.x,
Expand Down

0 comments on commit b9c0a6d

Please sign in to comment.