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

Failing to load chart releases should only warn (#3399)

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-07-15 17:16:54 -04:00 committed by GitHub
parent ea4a5a4c57
commit 9903417fed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ export class ReleaseStore extends ItemStore<HelmRelease> {
this.failedLoading = false; this.failedLoading = false;
} catch (error) { } catch (error) {
this.failedLoading = true; this.failedLoading = true;
console.error("Loading Helm Chart releases has failed", error); console.warn("Loading Helm Chart releases has failed", error);
if (error.error) { if (error.error) {
Notifications.error(error.error); Notifications.error(error.error);