This is an automated email from the ASF dual-hosted git repository. jedcunningham pushed a commit to branch v2-9-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 1f70db4794656a9cc86c9c862ee2658c060cf9f3 Author: Daniel Standish <[email protected]> AuthorDate: Fri Apr 12 16:04:16 2024 -0700 Use debug level for minischeduler skip (#38976) Now that we are using nowait, it will be more common that the minicheduler skips. Leaving it at info level will cause unnecessary alarm to users. (cherry picked from commit d03ba594b3158c127c1c1b3f1d0c31fb93104367) --- airflow/models/taskinstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/models/taskinstance.py b/airflow/models/taskinstance.py index 6dedf4bfd2..42849f88f1 100644 --- a/airflow/models/taskinstance.py +++ b/airflow/models/taskinstance.py @@ -3486,7 +3486,7 @@ class TaskInstance(Base, LoggingMixin): except OperationalError as e: # Any kind of DB error here is _non fatal_ as this block is just an optimisation. - cls.logger().info( + cls.logger().debug( "Skipping mini scheduling run due to exception: %s", e.statement, exc_info=True,
