Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/apache-airflow/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ a global ``start_date`` for your tasks. This can be done by declaring your
``start_date`` directly in the ``DAG()`` object. A DAG's first
DagRun will be created based on the first complete ``data_interval``
after ``start_date``. For example, for a DAG with
``start_date=``datetime(2024, 1, 1)`` and ``schedule="0 0 3 * *"``, the
``start_date=datetime(2024, 1, 1)`` and ``schedule="0 0 3 * *"``, the
first DAG run will be triggered at midnight on 2024-02-03 with
``data_interval_start=datetime(2024, 1, 3)`` and
``data_interval_end=datetime(2024, 2, 3)``. From that point on, the scheduler
Expand Down