This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-0-test by this push:
     new d45c1f83786 [v3-0-test] CHG: refer fix (#54490) (#54535)
d45c1f83786 is described below

commit d45c1f83786038869ed59abf481c61ef8e75fedb
Author: Jarek Potiuk <[email protected]>
AuthorDate: Fri Aug 15 09:11:34 2025 +0200

    [v3-0-test] CHG: refer fix (#54490) (#54535)
    
    (cherry picked from commit c00f1d721a30779f1e3d5f0977ba97fa988e7a4f)
    
    Co-authored-by: Kyungjun Lee <[email protected]>
---
 airflow-core/docs/administration-and-deployment/listeners.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow-core/docs/administration-and-deployment/listeners.rst 
b/airflow-core/docs/administration-and-deployment/listeners.rst
index b1ccf181d0c..95eed49273d 100644
--- a/airflow-core/docs/administration-and-deployment/listeners.rst
+++ b/airflow-core/docs/administration-and-deployment/listeners.rst
@@ -127,7 +127,7 @@ To create a listener:
 - import ``airflow.listeners.hookimpl``
 - implement the ``hookimpls`` for events that you'd like to generate 
notifications
 
-Airflow defines the specification as `hookspec 
<https://github.com/apache/airflow/tree/main/airflow/listeners/spec>`__. Your 
implementation must accept the same named parameters as defined in hookspec. If 
you don't use the same parameters as hookspec, Pluggy throws an error when you 
try to use your plugin. But you don't need to implement every method. Many 
listeners only implement one method, or a subset of methods.
+Airflow defines the specification as `hookspec 
<https://github.com/apache/airflow/tree/main/airflow-core/src/airflow/listeners/spec>`__.
 Your implementation must accept the same named parameters as defined in 
hookspec. If you don't use the same parameters as hookspec, Pluggy throws an 
error when you try to use your plugin. But you don't need to implement every 
method. Many listeners only implement one method, or a subset of methods.
 
 To include the listener in your Airflow installation, include it as a part of 
an :doc:`Airflow Plugin </administration-and-deployment/plugins>`.
 

Reply via email to