diff --git a/src/main/cluster.ts b/src/main/cluster.ts index a4ba94a75f..f1e59aa355 100644 --- a/src/main/cluster.ts +++ b/src/main/cluster.ts @@ -111,12 +111,10 @@ export class Cluster implements ClusterModel { protected bindEvents() { logger.info(`[CLUSTER]: bind events`, this.getMeta()); const refreshTimer = setInterval(() => this.online && this.refresh(), 30000); // every 30s - const refreshEventsTimer = setInterval(() => this.online && this.refreshEvents(), 3000); // every 3s this.eventDisposers.push( reaction(this.getState, this.pushState), () => clearInterval(refreshTimer), - () => clearInterval(refreshEventsTimer), ); }