Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airflow/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def prioritize_queued(self, session, executor, dagbag):
session.expunge_all()
d = defaultdict(list)
for ti in queued_tis:
if ti.dag_id in ['long_running_test']:
if ti.dag_id in ['long_running_test', 'presto_query_logs']:
self.logger.info(
'Ignoring {} because this DAG is handled by the airflow 1.8 scheduler'.format(ti))
elif ti.dag_id not in dagbag.dags:
Expand Down