We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c347ece commit be12a8fCopy full SHA for be12a8f
src/redis-adapter.js
@@ -108,9 +108,9 @@ const _createClientBase = (clientName) => {
108
};
109
if (isCluster) {
110
return redis.createCluster({
111
- rootNodes: [redisClientOptions],
+ rootNodes: [redisClientOptions], // NOTE: assume this ignores everything but socket/url
112
// https://github.com/redis/node-redis/issues/1782
113
- defaults: redisClientOptions,
+ defaults: redisClientOptions, // NOTE: assume this ignores socket/url
114
});
115
}
116
return redis.createClient(redisClientOptions);
0 commit comments