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:
parent
ea4a5a4c57
commit
9903417fed
@ -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);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user