tirkarthi commented on issue #46487: URL: https://github.com/apache/airflow/issues/46487#issuecomment-2643867545
I guess `start_date` should be set as nullable similar to `end_date` . `start_date` is nullable in `DAGRunResponse`. I tried this fix with manual edit but unfortunately couldn't regenerate the files `_generated.py` properly in local setup. https://github.com/apache/airflow/blob/45d37da572ead522d9fa64889ad5d12fedfd1a88/airflow/api_fastapi/execution_api/datamodels/taskinstance.py#L228-L229 Fix tried ``` start_date: Annotated[datetime | None, Field(title="Start Date")] = None ``` https://github.com/apache/airflow/issues/46570 -- 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]
