Webpack build for branch master: d9262f2682

This commit is contained in:
Travis CI 2017-08-10 18:34:53 +00:00
parent dae330ef75
commit 4606355618
2 changed files with 2 additions and 2 deletions

View file

@ -23392,7 +23392,7 @@ class RequestHandler {
if (err.status === 429) { if (err.status === 429) {
this.queue.unshift(item); this.queue.unshift(item);
finish(Number(res.headers['retry-after']) + this.client.options.restTimeOffset); finish(Number(res.headers['retry-after']) + this.client.options.restTimeOffset);
} else if (err.status >= 500 && err.status < 600) { } else if (err.status === 500) {
this.queue.unshift(item); this.queue.unshift(item);
finish(1e3 + this.client.options.restTimeOffset); finish(1e3 + this.client.options.restTimeOffset);
} else { } else {

File diff suppressed because one or more lines are too long