Replace stale runway history on raw backfill

This commit is contained in:
2569718930@qq.com
2026-06-15 20:49:37 +08:00
parent 07e28481e8
commit 95b55d4ab3
2 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -368,7 +368,7 @@ def _append_amsc_runway_history_from_raw_store(
except Exception as exc:
logger.debug("latest AMSC raw history overlay skipped city={}: {}", city, exc)
return False
payload["runway_plate_history"] = deepcopy(existing_history) if isinstance(existing_history, dict) else {}
payload["runway_plate_history"] = {}
changed = False
for row in rows if isinstance(rows, list) else []:
if not isinstance(row, dict):