jscheffl commented on code in PR #45702: URL: https://github.com/apache/airflow/pull/45702#discussion_r1917916842
########## airflow/www/views.py: ########## @@ -1774,7 +1774,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 "", Review Comment: If there is no task_display_name then the task_id should be the fallback. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org