Skip to content

Commit

Permalink
fix(goal_planner): fix goal_searcher assert (#10055)
Browse files Browse the repository at this point in the history
Signed-off-by: Mamoru Sobue <[email protected]>
  • Loading branch information
soblin authored Jan 31, 2025
1 parent d63bec2 commit ffded51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1702,7 +1702,7 @@ PathWithLaneId GoalPlannerModule::generateStopPath(
const PullOverContextData & context_data, const std::string & detail) const
{
universe_utils::ScopedTimeTrack st(__func__, *time_keeper_);
assert(!goal_searcher_);
assert(goal_searcher_);
const auto & goal_searcher = goal_searcher_.value();

const auto & route_handler = planner_data_->route_handler;
Expand Down

0 comments on commit ffded51

Please sign in to comment.