Bug 1348210 - Auto-block stylo-bustage metabug (#2263) r=camd

This commit is contained in:
KWierso 2017-03-21 15:16:54 -07:00 коммит произвёл GitHub
Родитель 40dc9ee93a
Коммит 9b95d09434
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -40,6 +40,12 @@ treeherder.controller('BugFilerCtrl', [
*/
$scope.initiate = function() {
var thisFailure = "";
// Auto-block the stylo-bustage metabug if this is a stylo failure
if (selectedJob.build_platform.includes("stylo")) {
$scope.modalBlocks = "stylo-bustage,";
}
for (var i = 0; i < allFailures.length; i++) {
for (var j=0; j < $scope.omittedLeads.length; j++) {
if (allFailures[i][0].search($scope.omittedLeads[j]) >= 0 && allFailures[i].length > 1) {