[LNT] r235996 - "Latest Submission" time is incorrect

Chris Matthews cmatthews5 at apple.com
Tue Apr 28 09:30:21 PDT 2015


Author: cmatthews
Date: Tue Apr 28 11:30:21 2015
New Revision: 235996

URL: http://llvm.org/viewvc/llvm-project?rev=235996&view=rev
Log:
"Latest Submission" time is incorrect

Latest Submission implies the time the run was submitted. We used the
start time, which could be quite far from when the run was submitted for
a long run.  Replace with the end time, that is very close to submission
time.

Modified:
    lnt/trunk/lnt/server/ui/templates/v4_recent_activity.html

Modified: lnt/trunk/lnt/server/ui/templates/v4_recent_activity.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_recent_activity.html?rev=235996&r1=235995&r2=235996&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_recent_activity.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_recent_activity.html Tue Apr 28 11:30:21 2015
@@ -31,7 +31,7 @@
       {% for machine_name,r in active_machines|dictsort %}
       <tr>
         <td>{{ utils.render_machine(r.machine) }}</td>
-        <td><span class="reltime">{{r.start_time.isoformat()}}</span></td>
+        <td><span class="reltime">{{r.end_time.isoformat()}}</span></td>
         <td>{{ utils.render_result(r) }}</td>
       </tr>
       {% endfor %}





More information about the llvm-commits mailing list