Skip to content

Commit 4035376

Browse files
committed
fix(goal_planner): remove time keeper in non main thread (autowarefoundation#8610)
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
1 parent e7a489f commit 4035376

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::hasDecidedPath(
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)
@@ -1277,8 +1275,6 @@ DecidingPathStatusWithStamp GoalPlannerModule::checkDecidingPathStatus(
12771275
const std::shared_ptr<SafetyCheckParams> & safety_check_params,
12781276
const std::shared_ptr<GoalSearcherBase> goal_searcher) const
12791277
{
1280-
universe_utils::ScopedTimeTrack st(__func__, *time_keeper_);
1281-
12821278
const auto & prev_status = thread_safe_data_.get_prev_data().deciding_path_status;
12831279
const bool enable_safety_check = parameters.safety_check_params.enable_safety_check;
12841280

0 commit comments

Comments
 (0)