Skip to content

Commit d77b43c

Browse files
wrpashb
authored andcommitted
[AIRFLOW-3090] Make No tasks to consider for execution debug (#3923)
During normal operation, it is not necessary to see the message. This can only be useful when debugging an issue.
1 parent 4f66981 commit d77b43c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airflow/jobs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ def _find_executable_task_instances(self, simple_dag_bag, states, session=None):
11001100
task_instances_to_examine = ti_query.all()
11011101

11021102
if len(task_instances_to_examine) == 0:
1103-
self.log.info("No tasks to consider for execution.")
1103+
self.log.debug("No tasks to consider for execution.")
11041104
return executable_tis
11051105

11061106
# Put one task instance on each line

0 commit comments

Comments
 (0)