Skip to content

Commit

Permalink
Use debug level for minischeduler skip (#38976)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dstandish authored Apr 12, 2024
1 parent 311f2dd commit d03ba59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/models/taskinstance.py
Original file line number Diff line number Diff line change
Expand Up @@ -3563,7 +3563,7 @@ def _schedule_downstream_tasks(

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,
Expand Down

0 comments on commit d03ba59

Please sign in to comment.