Skip to content
Snippets Groups Projects
Commit d6676d0b authored by Dale Sikkema's avatar Dale Sikkema
Browse files

MAGETWO-44154: Random PAT build failures due to 400/503 HTTP response errors being thrown

parent 7df126c0
Branches
No related merge requests found
...@@ -322,10 +322,8 @@ angular.module('readiness-check', []) ...@@ -322,10 +322,8 @@ angular.module('readiness-check', [])
angular.forEach($scope.items, function(item) { angular.forEach($scope.items, function(item) {
item.show(); item.show();
}); });
var $delay = 0;
angular.forEach($scope.items, function(item) { angular.forEach($scope.items, function(item) {
$timeout(function() { $scope.query(item); }, $delay * 1000); $scope.query(item);
$delay++;
}); });
}; };
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment