You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/10/10 13:10:29 UTC

[GitHub] [airflow] Poxxy commented on issue #26865: logical_date
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org