feat: engineer SBAS timeseries production workflow

This commit is contained in:
2026-04-29 14:43:31 +08:00
parent dace8b20f6
commit 4c0d1f2c2b
54 changed files with 5843 additions and 201 deletions
+3
View File
@@ -273,6 +273,9 @@ class TaskService:
else:
# 显式更新心跳时间,防止 SQLAlchemy 因属性未变而跳过 UPDATE
task.updated_at = datetime.now()
task.ended_at = None
if status == "RUNNING" and task.started_at is None:
task.started_at = datetime.now()
await db.commit()
else: