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

Unified Diff: Tools/GardeningServer/ui/ct-failure-analyzer.html

Issue 448503003: Adds a snooze button to the sheriff-o-matic ui (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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-failure-analyzer.html
diff --git a/Tools/GardeningServer/ui/ct-failure-analyzer.html b/Tools/GardeningServer/ui/ct-failure-analyzer.html
index f31bc4af8cf6c55f313cf59c22008843cefd860b..0af8a855e0713b0e070fcd05a9ec066e9c739fff 100644
--- a/Tools/GardeningServer/ui/ct-failure-analyzer.html
+++ b/Tools/GardeningServer/ui/ct-failure-analyzer.html
@@ -5,6 +5,7 @@ found in the LICENSE file.
-->
<link rel="import" href="../model/ct-failure.html">
+<link rel="import" href="../model/ct-failure-group.html">
<polymer-element name="ct-failure-analyzer" attributes="failures builderLatestRevisions">
<script>
@@ -117,7 +118,8 @@ found in the LICENSE file.
if (!this.failures[tree])
this.failures[tree] = [];
- this.failures[tree].push(failures);
+ // FIXME: Pass a snoozetime argument to CTFailureGroup.
+ this.failures[tree].push(new CTFailureGroup(group.sort_key, failures));
}.bind(this));
},
});

Powered by Google App Engine
This is Rietveld 408576698