From 2467b901d9c69838a5da4190dd9772e90dc79cd4 Mon Sep 17 00:00:00 2001 From: Roman Date: Thu, 10 Sep 2020 17:59:12 +0300 Subject: [PATCH] reverted back reconnect check in cluster.activate() Signed-off-by: Roman --- src/main/cluster.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/cluster.ts b/src/main/cluster.ts index ca8d43f8f8..eb703cab8b 100644 --- a/src/main/cluster.ts +++ b/src/main/cluster.ts @@ -130,7 +130,7 @@ export class Cluster implements ClusterModel { if (!this.eventDisposers.length) { this.bindEvents(); } - if (this.disconnected) { + if (this.disconnected && !this.accessible) { await this.reconnect(); } await this.refresh();