From 74b7a228a175899624a44f169ea15781f75daf06 Mon Sep 17 00:00:00 2001 From: Lauri Nevala Date: Wed, 13 Jan 2021 12:28:34 +0200 Subject: [PATCH] Do not expose intializing to cluster state Signed-off-by: Lauri Nevala --- src/main/cluster.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/cluster.ts b/src/main/cluster.ts index 176264f8b8..9a9c1adab4 100644 --- a/src/main/cluster.ts +++ b/src/main/cluster.ts @@ -37,7 +37,6 @@ export type ClusterRefreshOptions = { }; export interface ClusterState { - initializing: boolean; initialized: boolean; enabled: boolean; apiUrl: string; @@ -579,7 +578,6 @@ export class Cluster implements ClusterModel, ClusterState { */ getState(): ClusterState { const state: ClusterState = { - initializing: this.initializing, initialized: this.initialized, enabled: this.enabled, apiUrl: this.apiUrl,