1
0
mirror of https://github.com/lensapp/lens.git synced 2025-01-06 07:58:51 +03:00

Don't retry metrics on 404 status code (#152)

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-03-24 19:06:56 +02:00 committed by GitHub
parent 1aaa695cfe
commit 39fdcdb54a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ class MetricsRoute extends LensApi {
...queryParams
}
}).catch(async (error) => {
if (attempt < maxAttempts) {
if (attempt < maxAttempts && (error.statusCode && error.statusCode != 404)) {
await new Promise(resolve => setTimeout(resolve, attempt * 1000)); // add delay before repeating request
return loadMetrics(query);
}