1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

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

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
Signed-off-by: Cody Belcher <cody.t.belcher@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-03-24 19:06:56 +02:00 committed by Cody Belcher
parent 9353fa0125
commit cf7819ebce

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);
}