Skip to content

Commit be5ab55

Browse files
shmpwksoblin
andauthored
fix(goal_planner): fix time_keeper race (autowarefoundation#8780) (#1555)
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp> Co-authored-by: Mamoru Sobue <hilo.soblin@gmail.com>
1 parent fb559b5 commit be5ab55

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
@@ -1259,8 +1259,6 @@ bool GoalPlannerModule::hasNotDecidedPath(
12591259
const std::shared_ptr<SafetyCheckParams> & safety_check_params,
12601260
const std::shared_ptr<GoalSearcherBase> goal_searcher) const
12611261
{
1262-
universe_utils::ScopedTimeTrack st(__func__, *time_keeper_);
1263-
12641262
return checkDecidingPathStatus(
12651263
planner_data, occupancy_grid_map, parameters, ego_predicted_path_params,
12661264
objects_filtering_params, safety_check_params, goal_searcher)
@@ -2371,8 +2369,6 @@ std::pair<bool, bool> GoalPlannerModule::isSafePath(
23712369
const std::shared_ptr<ObjectsFilteringParams> & objects_filtering_params,
23722370
const std::shared_ptr<SafetyCheckParams> & safety_check_params) const
23732371
{
2374-
universe_utils::ScopedTimeTrack st(__func__, *time_keeper_);
2375-
23762372
if (!thread_safe_data_.get_pull_over_path()) {
23772373
return {false, false};
23782374
}

0 commit comments

Comments
 (0)