Skip to content

Commit

Permalink
fix(behavior_path_planner): change skip updataData() process condition (
Browse files Browse the repository at this point in the history
autowarefoundation#4573)

change skip condition

Signed-off-by: kyoichi-sugahara <[email protected]>
  • Loading branch information
kyoichi-sugahara authored and LeoDriveProject committed Aug 16, 2023
1 parent c86ead4 commit c313e50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ void SideShiftModule::updateData()
}
}

if (current_state_ != ModuleStatus::RUNNING) {
if (current_state_ != ModuleStatus::RUNNING && current_state_ != ModuleStatus::IDLE) {
return;
}

Expand Down

0 comments on commit c313e50

Please sign in to comment.