diff --git a/lib/cluster/index.ts b/lib/cluster/index.ts index a046c3b6..8064ccea 100644 --- a/lib/cluster/index.ts +++ b/lib/cluster/index.ts @@ -148,7 +148,10 @@ class Cluster extends Commander { ); } - this.connectionPool = new ConnectionPool(this.options.redisOptions); + this.connectionPool = new ConnectionPool({ + ...this.options.redisOptions, + initialStartupNodes: this.startupNodes + }); this.connectionPool.on("-node", (redis, key) => { this.emit("-node", redis);