Skip to content

Commit 8f79195

Browse files
authored
fix(goal_planner): fix time_keeper race (#8780)
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
1 parent 55cc82d commit 8f79195

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

planning/behavior_path_planner/autoware_behavior_path_goal_planner_module/src/goal_planner_module.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -1243,8 +1243,6 @@ bool GoalPlannerModule::hasNotDecidedPath(
12431243
const std::shared_ptr<SafetyCheckParams> & safety_check_params,
12441244
const std::shared_ptr<GoalSearcherBase> goal_searcher) const
12451245
{
1246-
universe_utils::ScopedTimeTrack st(__func__, *time_keeper_);
1247-
12481246
return checkDecidingPathStatus(
12491247
planner_data, occupancy_grid_map, parameters, ego_predicted_path_params,
12501248
objects_filtering_params, safety_check_params, goal_searcher)
@@ -2360,8 +2358,6 @@ std::pair<bool, bool> GoalPlannerModule::isSafePath(
23602358
const std::shared_ptr<ObjectsFilteringParams> & objects_filtering_params,
23612359
const std::shared_ptr<SafetyCheckParams> & safety_check_params) const
23622360
{
2363-
universe_utils::ScopedTimeTrack st(__func__, *time_keeper_);
2364-
23652361
if (!thread_safe_data_.get_pull_over_path()) {
23662362
return {false, false};
23672363
}

0 commit comments

Comments
 (0)