Skip to content

Commit f3d1590

Browse files
authored
refactor(goal_planner): fix updateData continuation condition (autowarefoundation#10079)
refactor(goal_planner): fix updateData contiuation condition Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
1 parent 03d64a8 commit f3d1590

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

planning/behavior_path_planner/autoware_behavior_path_goal_planner_module/src/goal_planner_module.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ void GoalPlannerModule::updateData()
746746
}
747747
}
748748

749-
if (getCurrentStatus() == ModuleStatus::IDLE && !isExecutionRequested()) {
749+
if (getCurrentStatus() == ModuleStatus::IDLE) {
750750
return;
751751
}
752752

0 commit comments

Comments
 (0)