uranusjr commented on code in PR #22934: URL: https://github.com/apache/airflow/pull/22934#discussion_r849225469
########## airflow/models/taskfail.py: ########## @@ -37,6 +39,9 @@ class TaskFail(Base): end_date = Column(UtcDateTime) duration = Column(Integer) + task_instance = relationship("TaskInstance", lazy='select', innerjoin=True) Review Comment: ```suggestion task_instance = relationship("TaskInstance", innerjoin=True) ``` -- 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