Bug 1411368 - Automatically fix no-multi-spaces issues raised when using ESLint 4. r=mossop

MozReview-Commit-ID: H5YVp3rnzGo
This commit is contained in:
Mark Banner
2017-10-26 11:47:01 +01:00
parent 8d6a565b98
commit e47ccbfec3
139 changed files with 384 additions and 378 deletions

View File

@@ -177,7 +177,7 @@ RequestBackoff.prototype.isErrorStatus = function(status) {
// to throttle pending requests.
function RequestBackoffV4(maxRequests, requestPeriod) {
let rand = Math.random();
let retryInterval = Math.floor(15 * 60 * 1000 * (rand + 1)); // 15 ~ 30 min.
let retryInterval = Math.floor(15 * 60 * 1000 * (rand + 1)); // 15 ~ 30 min.
let backoffInterval = Math.floor(30 * 60 * 1000 * (rand + 1)); // 30 ~ 60 min.
return new RequestBackoff(2 /* max errors */,