Skip to content

Commit

Permalink
[AIRFLOW-3090] Make No tasks to consider for execution debug (apache#…
Browse files Browse the repository at this point in the history
…3923)

During normal operation, it is not necessary to see the message.  This
can only be useful when debugging an issue.
  • Loading branch information
wrp authored and Alice Berard committed Jan 3, 2019
1 parent 1dd3849 commit c21722c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,7 @@ def _find_executable_task_instances(self, simple_dag_bag, states, session=None):
task_instances_to_examine = ti_query.all()

if len(task_instances_to_examine) == 0:
self.log.info("No tasks to consider for execution.")
self.log.debug("No tasks to consider for execution.")
return executable_tis

# Put one task instance on each line
Expand Down

0 comments on commit c21722c

Please sign in to comment.