mcw0933 commented on a change in pull request #5297: AIRFLOW-2143 - Fix 
TaskTries graph counts off-by-1
URL: https://github.com/apache/airflow/pull/5297#discussion_r287328030
 
 

 ##########
 File path: airflow/www/views.py
 ##########
 @@ -1546,7 +1546,8 @@ def tries(self, session=None):
             for ti in task.get_task_instances(start_date=min_date, 
end_date=base_date):
                 dttm = wwwutils.epoch(ti.execution_date)
                 x.append(dttm)
-                y.append(ti.try_number)
+                # https://issues.apache.org/jira/browse/AIRFLOW-2143
 
 Review comment:
   Done.  

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to