Title: [179194] trunk/Websites/perf.webkit.org
Revision
179194
Author
[email protected]
Date
2015-01-27 11:08:57 -0800 (Tue, 27 Jan 2015)

Log Message

Unreviewed build fix. "eta" isn't set on a in-progress build on a newly added builder.

* tools/sync-with-buildbot.py:
(find_request_updates):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (179193 => 179194)


--- trunk/Websites/perf.webkit.org/ChangeLog	2015-01-27 18:44:46 UTC (rev 179193)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2015-01-27 19:08:57 UTC (rev 179194)
@@ -1,3 +1,10 @@
+2015-01-27  Ryosuke Niwa  <[email protected]>
+
+        Unreviewed build fix. "eta" isn't set on a in-progress build on a newly added builder.
+
+        * tools/sync-with-buildbot.py:
+        (find_request_updates):
+
 2015-01-23  Ryosuke Niwa  <[email protected]>
 
         Perf dashboard always assigns the result of A/B testing with build request 1

Modified: trunk/Websites/perf.webkit.org/tools/sync-with-buildbot.py (179193 => 179194)


--- trunk/Websites/perf.webkit.org/tools/sync-with-buildbot.py	2015-01-27 18:44:46 UTC (rev 179193)
+++ trunk/Websites/perf.webkit.org/tools/sync-with-buildbot.py	2015-01-27 19:08:57 UTC (rev 179194)
@@ -89,7 +89,7 @@
                 if not request_id:
                     continue
 
-                in_progress = build.get('currentStep') and build.get('eta')
+                in_progress = build.get('currentStep')
                 if in_progress:
                     request_updates[request_id] = {'status': 'running', 'url': config['url']}
                     config['scheduledRequests'].discard(request_id)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to