uranusjr commented on code in PR #45062:
URL: https://github.com/apache/airflow/pull/45062#discussion_r1900639635
##########
airflow/api_fastapi/core_api/datamodels/backfills.py:
##########
@@ -56,3 +57,15 @@ class BackfillCollectionResponse(BaseModel):
backfills: list[BackfillResponse]
total_entries: int
+
+
+class BackfillRunInfo(BaseModel):
+ """Data model for run information during a backfill operation."""
+
+ logical_date: datetime
Review Comment:
Data interval does not technically provide additional context; logical date
is the only identifier when backfilling. With that said, I think the
information is probably still convenient for the user since they wouldn’t need
to check the schedule.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]