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 9cbe494e23 Change log level from ERROR to INFO (#32979)
9cbe494e23 is described below

commit 9cbe494e231a5b2e92e6831a4be25802753f03e5
Author: Rohan Anand <[email protected]>
AuthorDate: Wed Aug 2 15:53:08 2023 +0530

    Change log level from ERROR to INFO (#32979)
    
    Co-authored-by: D. Ferruzzi <[email protected]>
---
 airflow/jobs/triggerer_job_runner.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/jobs/triggerer_job_runner.py 
b/airflow/jobs/triggerer_job_runner.py
index d92c281cf0..9fcc8d14d9 100644
--- a/airflow/jobs/triggerer_job_runner.py
+++ b/airflow/jobs/triggerer_job_runner.py
@@ -569,7 +569,7 @@ class TriggerRunner(threading.Thread, LoggingMixin):
             # be a busy event loop.
             time_elapsed = time.monotonic() - last_run
             if time_elapsed > 0.2:
-                self.log.error(
+                self.log.info(
                     "Triggerer's async thread was blocked for %.2f seconds, "
                     "likely by a badly-written trigger. Set 
PYTHONASYNCIODEBUG=1 "
                     "to get more information on overrunning coroutines.",

Reply via email to