Skip to content

Commit 094e9bb

Browse files
committed
fix(goal_planner): fix goal_searcher assert (autowarefoundation#10055)
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
1 parent fe41742 commit 094e9bb

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
@@ -1702,7 +1702,7 @@ PathWithLaneId GoalPlannerModule::generateStopPath(
17021702
const PullOverContextData & context_data, const std::string & detail) const
17031703
{
17041704
universe_utils::ScopedTimeTrack st(__func__, *time_keeper_);
1705-
assert(!goal_searcher_);
1705+
assert(goal_searcher_);
17061706
const auto & goal_searcher = goal_searcher_.value();
17071707

17081708
const auto & route_handler = planner_data_->route_handler;

0 commit comments

Comments
 (0)