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-core/src/airflow/dag_processing/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ def _log_file_processing_stats(self, known_files: dict[str, set[DagFileInfo]]):
)

# Sort by longest last runtime. (Can't sort None values in python3)
rows.sort(key=lambda x: x[5] or 0.0, reverse=True)
rows.sort(key=lambda x: x[6] or 0.0, reverse=True)

formatted_rows = []
for (
Expand Down