From 81bb3c4f56e02e5dec7badfe38395d2a6dd44eb0 Mon Sep 17 00:00:00 2001 From: Idris Adebisi Date: Thu, 14 Nov 2024 14:30:56 +0000 Subject: [PATCH] Update trigger_dagrun doc reference --- docs/apache-airflow/core-concepts/dags.rst | 2 +- docs/apache-airflow/operators-and-hooks-ref.rst | 2 +- newsfragments/41736.significant.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/apache-airflow/core-concepts/dags.rst b/docs/apache-airflow/core-concepts/dags.rst index ae4da4ab18c683..98823fbc85ad76 100644 --- a/docs/apache-airflow/core-concepts/dags.rst +++ b/docs/apache-airflow/core-concepts/dags.rst @@ -765,7 +765,7 @@ While dependencies between tasks in a DAG are explicitly defined through upstrea relationships, dependencies between DAGs are a bit more complex. In general, there are two ways in which one DAG can depend on another: -- triggering - :class:`~airflow.operators.trigger_dagrun.TriggerDagRunOperator` +- triggering - :class:`~airflow.providers.standard.operators.trigger_dagrun.TriggerDagRunOperator` - waiting - :class:`~airflow.sensors.external_task_sensor.ExternalTaskSensor` Additional difficulty is that one DAG could wait for or trigger several runs of the other DAG diff --git a/docs/apache-airflow/operators-and-hooks-ref.rst b/docs/apache-airflow/operators-and-hooks-ref.rst index ae131fb8d268fb..22a320fb7bb64d 100644 --- a/docs/apache-airflow/operators-and-hooks-ref.rst +++ b/docs/apache-airflow/operators-and-hooks-ref.rst @@ -65,7 +65,7 @@ For details see: :doc:`apache-airflow-providers:operators-and-hooks-ref/index`. * - :mod:`airflow.operators.latest_only` - - * - :mod:`airflow.operators.trigger_dagrun` + * - :mod:`airflow.providers.standard.operators.trigger_dagrun` - **Sensors:** diff --git a/newsfragments/41736.significant.rst b/newsfragments/41736.significant.rst index 2c90979d80f06b..92ab8cb92a8ffd 100644 --- a/newsfragments/41736.significant.rst +++ b/newsfragments/41736.significant.rst @@ -3,5 +3,5 @@ Removed deprecated parameters from core-operators. Parameters removed: - airflow.operators.datetime.BranchDateTimeOperator: use_task_execution_date -- airflow.operators.trigger_dagrun.TriggerDagRunOperator: execution_date +- airflow.providers.standard.operators.trigger_dagrun.TriggerDagRunOperator: execution_date - airflow.operators.weekday.BranchDayOfWeekOperator: use_task_execution_day