Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(541)

Unified Diff: Tools/GardeningServer/ui/ct-builder-grid.html

Issue 402603007: Get sheriff-o-matic data from auto-sheriff.appspot.com. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update and delete old code Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Tools/GardeningServer/ui/ct-builder-grid.html
diff --git a/Tools/GardeningServer/ui/ct-builder-grid.html b/Tools/GardeningServer/ui/ct-builder-grid.html
index f7a383df6f3c20c91db362423245f0818f80e425..4caa99cec81964e070fd839319c956afc16076bc 100644
--- a/Tools/GardeningServer/ui/ct-builder-grid.html
+++ b/Tools/GardeningServer/ui/ct-builder-grid.html
@@ -129,13 +129,10 @@ found in the LICENSE file.
passingRevisions.push(failure.newestPassingRevision);
var results = failure.resultNodesByBuilder;
Object.keys(results, (function(builder) {
- var result = results[builder];
- if (!result.is_unexpected)
ojan 2014/07/21 00:44:56 With the new backend, we only have data for unexpe
- return;
-
- if (!Object.has(this.resultTypes, result.actual))
- this.resultTypes[result.actual] = {};
- this.resultTypes[result.actual][builder] =
+ var result = results[builder].actual;
+ if (!Object.has(this.resultTypes, result))
+ this.resultTypes[result] = {};
+ this.resultTypes[result][builder] =
config.builders[builder];
}).bind(this));
}, this);

Powered by Google App Engine
This is Rietveld 408576698