vincbeck commented on code in PR #39176:
URL: https://github.com/apache/airflow/pull/39176#discussion_r1576730924
##########
tests/system/utils/__init__.py:
##########
@@ -40,15 +40,10 @@ def callback(context: Context):
ti.sort(key=lambda x: x.end_date)
- headers = ["Task ID", "Status", "Duration (s)"]
+ headers = ["Task ID", "Status"]
results = []
- # computing time using previous task's end time
- # because task.duration only counts last poke for sensors.
- # Only produces meaningful results when running sequentially, which is
the case for system tests
- prev_time = ti[0].end_date - timedelta(seconds=ti[0].duration)
Review Comment:
Somehow, the `duration` property no long exist. I am removing this
information from the table.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]