This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 48c166a7c1f fix: update params in backfill documentation (#61821)
48c166a7c1f is described below
commit 48c166a7c1f0f6484ea56d86468525405bf9fa92
Author: Andrii Roiko <[email protected]>
AuthorDate: Thu Apr 2 20:39:42 2026 +0300
fix: update params in backfill documentation (#61821)
---
airflow-core/docs/core-concepts/backfill.rst | 6 +++---
airflow-core/docs/core-concepts/dag-run.rst | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/airflow-core/docs/core-concepts/backfill.rst
b/airflow-core/docs/core-concepts/backfill.rst
index e194fe65a15..74363381ad4 100644
--- a/airflow-core/docs/core-concepts/backfill.rst
+++ b/airflow-core/docs/core-concepts/backfill.rst
@@ -65,9 +65,9 @@ For CLI, below is an example command:
.. code-block:: bash
airflow backfill create --dag-id tutorial \
- --start-date 2015-06-01 \
- --end-date 2015-06-07 \
- --reprocessing-behavior failed \
+ --from-date 2015-06-01 \
+ --to-date 2015-06-07 \
+ --reprocess-behavior failed \
--max-active-runs 3 \
--run-backwards \
--dag-run-conf '{"my": "param"}'
diff --git a/airflow-core/docs/core-concepts/dag-run.rst
b/airflow-core/docs/core-concepts/dag-run.rst
index a1b398666ee..2f5cd3c5a66 100644
--- a/airflow-core/docs/core-concepts/dag-run.rst
+++ b/airflow-core/docs/core-concepts/dag-run.rst
@@ -165,9 +165,9 @@ For CLI usage, run the command below:
.. code-block:: bash
airflow backfill create --dag-id DAG_ID \
- --start-date START_DATE \
- --end-date END_DATE \
- --reprocessing-behavior failed \
+ --from-date START_DATE \
+ --to-date END_DATE \
+ --reprocess-behavior failed \
--max-active-runs 3 \
--run-backwards \
--dag-run-conf '{"my": "param"}'