Poxxy commented on issue #26865:
URL: https://github.com/apache/airflow/issues/26865#issuecomment-1273292033
Why is this not getting caught by `trigger_dag.py`? Lines 62-68:
`if dag.default_args and 'start_date' in dag.default_args:
min_dag_start_date = dag.default_args["start_date"]
if min_dag_start_date and execution_date < min_dag_start_date:
raise ValueError(
f"The execution_date [{execution_date.isoformat()}] should
be >= start_date "
f"[{min_dag_start_date.isoformat()}] from DAG's default_args"
)`
--
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]