kaxil commented on code in PR #45294:
URL: https://github.com/apache/airflow/pull/45294#discussion_r1922064634
##########
airflow/executors/workloads.py:
##########
@@ -75,6 +77,15 @@ def key(self) -> TaskInstanceKey:
)
+class DagRun(BaseModel):
+ id: int
+ dag_id: str
+ run_id: str
+ logical_date: datetime
+ data_interval_start: datetime
+ data_interval_end: datetime
Review Comment:
Looks like a lot of classes are duplicated across this file &
`airflow/api_fastapi/execution_api/datamodels`.
We should figure this out with our packaging discussion if this entire file
is going to be moved to separate package.
--
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]