pierrejeambrun commented on code in PR #45062:
URL: https://github.com/apache/airflow/pull/45062#discussion_r1904218039
##########
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:
I think we can go like this at first.
We can always add the interval date later if needed.
##########
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:
I think we can go like this at first.
We can always add the interval data later if needed.
--
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]