今日实测最高改用 airport_current.max_so_far(METAR历史观测)

项目已有 airport_current 字段存储 METAR/AMOS 当天最高温及时间,
无需从 obs_log 自建。obs_log 保留期恢复为 2 小时。

Tested: pytest 176 passed, ruff check 通过
This commit is contained in:
2569718930@qq.com
2026-05-12 21:15:57 +08:00
parent b1d0e41fd4
commit a29ebfae27
2 changed files with 11 additions and 25 deletions
+1 -1
View File
@@ -1861,7 +1861,7 @@ class DBManager:
temp_c, wind_kt, pressure_hpa, str(obs_time)),
)
conn.execute(
"DELETE FROM airport_obs_log WHERE created_at < datetime('now', '-24 hours')"
"DELETE FROM airport_obs_log WHERE created_at < datetime('now', '-2 hours')"
)
conn.commit()