Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(freespace_planner): fix parking trajectory errors and warnings when parking completed #6696

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,9 @@
}

if (is_completed_) {
partial_trajectory_.header = odom_->header;
const auto stop_trajectory = createStopTrajectory(partial_trajectory_);

Check warning on line 434 in planning/freespace_planner/src/freespace_planner/freespace_planner_node.cpp

View check run for this annotation

Codecov / codecov/patch

planning/freespace_planner/src/freespace_planner/freespace_planner_node.cpp#L434

Added line #L434 was not covered by tests
trajectory_pub_->publish(stop_trajectory);
return;
}

Expand Down
Loading