From 9163d1cb74dfc747028da751beaec11b3408fb6d Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Sat, 25 Jul 2026 01:27:11 -0400 Subject: [PATCH] Revert "mapd: ignore in plannerd health check (#1880)" This reverts commit 2c334ede443d7391d27575af8c854a095ba702a8. --- openpilot/selfdrive/controls/plannerd.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openpilot/selfdrive/controls/plannerd.py b/openpilot/selfdrive/controls/plannerd.py index 5908e141f..66b17d60a 100755 --- a/openpilot/selfdrive/controls/plannerd.py +++ b/openpilot/selfdrive/controls/plannerd.py @@ -23,14 +23,13 @@ def main(): cloudlog.info("plannerd got CarParamsSP") gps_location_service = get_gps_location_service(params) - ignore_services = ["liveMapDataSP", gps_location_service] ldw = LaneDepartureWarning() longitudinal_planner = LongitudinalPlanner(CP, CP_SP) pm = messaging.PubMaster(['longitudinalPlan', 'driverAssistance', 'longitudinalPlanSP']) sm = messaging.SubMaster(['carControl', 'carState', 'controlsState', 'liveParameters', 'radarState', 'modelV2', 'selfdriveState', 'liveMapDataSP', 'carStateSP', gps_location_service], - poll='carState', ignore_alive=ignore_services, ignore_avg_freq=ignore_services, ignore_valid=ignore_services) + poll='carState') while True: sm.update()