Skip to content

Commit

Permalink
Fix empty task instance for log (#45702) (#45703)
Browse files Browse the repository at this point in the history
Co-authored-by: MishchenkoYuriy <[email protected]>
  • Loading branch information
jscheffl and MishchenkoYuriy authored Jan 16, 2025
1 parent 9d66c48 commit 04d0381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1771,7 +1771,7 @@ def log(self, session: Session = NEW_SESSION):
title="Log by attempts",
dag_id=dag_id,
task_id=task_id,
task_display_name=ti.task_display_name,
task_display_name=ti.task_display_name if ti else "",
execution_date=execution_date,
map_index=map_index,
form=form,
Expand Down

0 comments on commit 04d0381

Please sign in to comment.