Skip to content

Commit 66e0e13

Browse files
authored
fix(start_planner): not finish start planner when the path is not safe (#4401)
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
1 parent a57cabc commit 66e0e13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

planning/behavior_path_planner/src/scene_module/start_planner/start_planner_module.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ bool StartPlannerModule::isOverlappedWithLane(
681681

682682
bool StartPlannerModule::hasFinishedPullOut() const
683683
{
684-
if (!status_.back_finished) {
684+
if (!status_.back_finished || !status_.is_safe) {
685685
return false;
686686
}
687687

0 commit comments

Comments
 (0)