We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71c5ca3 commit 0110e8fCopy full SHA for 0110e8f
planning/autoware_behavior_path_planner/src/behavior_path_planner_node.cpp
@@ -417,7 +417,9 @@ void BehaviorPathPlannerNode::run()
417
const auto controlled_by_autoware_autonomously =
418
planner_data_->operation_mode->mode == OperationModeState::AUTONOMOUS &&
419
planner_data_->operation_mode->is_autoware_control_enabled;
420
- if (!controlled_by_autoware_autonomously && !planner_manager_->hasApprovedModules())
+ if (
421
+ !controlled_by_autoware_autonomously &&
422
+ !planner_manager_->hasNonAlwaysExecutableApprovedModules())
423
planner_manager_->resetCurrentRouteLanelet(planner_data_);
424
425
// run behavior planner
0 commit comments