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

ephraimanierobi pushed a commit to branch v2-6-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 3e4c5e840af6f7b9047f67f66e54b39523824897
Author: Vijayasarathi Balasubramanian <[email protected]>
AuthorDate: Tue Jul 4 16:57:49 2023 -0400

    Clarify Listener API behavior  (#32269)
    
    * Fixes: #31180 - Plugin for listeners - on_dag_run_running hook ignored
    
    Documentation update for Plugin for listeners - on_dag_run_running hook 
ignored
    Co-authored-by: Tzu-ping Chung <[email protected]>
    
    (cherry picked from commit ab2c861dd8a96f22b0fda692368ce9b103175322)
---
 docs/apache-airflow/administration-and-deployment/listeners.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/administration-and-deployment/listeners.rst 
b/docs/apache-airflow/administration-and-deployment/listeners.rst
index c34689c53f..2847eb514d 100644
--- a/docs/apache-airflow/administration-and-deployment/listeners.rst
+++ b/docs/apache-airflow/administration-and-deployment/listeners.rst
@@ -54,7 +54,7 @@ Airflow defines the specification as `hookspec 
<https://github.com/apache/airflo
 
 To include the listener in your Airflow installation, include it as a part of 
an :doc:`Airflow Plugin </authoring-and-scheduling/plugins>`
 
-Listener API is meant to be called across all DAGs and all operators. You 
can't listen to events generated by specific DAGs. For that behavior, try 
methods like ``on_success_callback`` and ``pre_execute``. These provide 
callbacks for particular DAG authors or operator creators.
+Listener API is meant to be called across all DAGs and all operators. You 
can't listen to events generated by specific DAGs. For that behavior, try 
methods like ``on_success_callback`` and ``pre_execute``. These provide 
callbacks for particular DAG authors or operator creators. The logs and 
``print()`` calls will be handled as part of the listeners.
 
 
 |experimental|

Reply via email to