Skip to content

Commit

Permalink
refactor(goal_planner): fix updateData continuation condition (autowa…
Browse files Browse the repository at this point in the history
…refoundation#10079)

refactor(goal_planner): fix updateData contiuation condition

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
  • Loading branch information
soblin authored Feb 7, 2025
1 parent 03d64a8 commit f3d1590
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ void GoalPlannerModule::updateData()
}
}

if (getCurrentStatus() == ModuleStatus::IDLE && !isExecutionRequested()) {
if (getCurrentStatus() == ModuleStatus::IDLE) {
return;
}

Expand Down

0 comments on commit f3d1590

Please sign in to comment.