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

Fix cluster disconnect not working

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-03-14 09:06:10 -04:00
parent 79a4eb32a3
commit 000efad220

View File

@ -118,7 +118,7 @@ class ClusterConnection {
this.bindEvents(); this.bindEvents();
} }
if (this.cluster.disconnected || !this.cluster.accessible.get()) { if (this.cluster.disconnected.get() || !this.cluster.accessible.get()) {
try { try {
this.dependencies.broadcastConnectionUpdate({ this.dependencies.broadcastConnectionUpdate({
level: "info", level: "info",
@ -184,7 +184,7 @@ class ClusterConnection {
} }
disconnect() { disconnect() {
if (this.cluster.disconnected) { if (this.cluster.disconnected.get()) {
return this.dependencies.logger.debug("[CLUSTER]: already disconnected", { id: this.cluster.id }); return this.dependencies.logger.debug("[CLUSTER]: already disconnected", { id: this.cluster.id });
} }