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 <[email protected]>
  • Loading branch information
soblin committed Feb 12, 2025
1 parent a5b5c58 commit 6efa878
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 6efa878

Please sign in to comment.