This is an automated email from the ASF dual-hosted git repository.
jedcunningham 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 58509f52a3 Fix typo in deferrable docs (#39494)
58509f52a3 is described below
commit 58509f52a3f41a564b068867290767993c929031
Author: Jed Cunningham <[email protected]>
AuthorDate: Wed May 8 10:22:26 2024 -0600
Fix typo in deferrable docs (#39494)
---
docs/apache-airflow/authoring-and-scheduling/deferring.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/apache-airflow/authoring-and-scheduling/deferring.rst
b/docs/apache-airflow/authoring-and-scheduling/deferring.rst
index 752ddc5f25..084a08f0ac 100644
--- a/docs/apache-airflow/authoring-and-scheduling/deferring.rst
+++ b/docs/apache-airflow/authoring-and-scheduling/deferring.rst
@@ -143,7 +143,7 @@ The ``self.defer`` call raises the ``TaskDeferred``
exception, so it can work an
Triggering Deferral from Start
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-If you want to defer your task directly to the triggerer without going into
the worker, you can add the class level attributes ``start_trigger`` and
``_next_method`` to your deferrable operator.
+If you want to defer your task directly to the triggerer without going into
the worker, you can add the class level attributes ``start_trigger`` and
``next_method`` to your deferrable operator.
* ``start_trigger``: An instance of a trigger you want to defer to. It will be
serialized into the database.
* ``next_method``: The method name on your operator that you want Airflow to
call when it resumes.