From 17b33e91ac91e84a78bf24e38ba19a5307e1b8cd Mon Sep 17 00:00:00 2001 From: Andy Payne Date: Tue, 25 Jul 2023 17:26:22 +0100 Subject: [PATCH] revert --- lib/redis/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/redis/index.js b/lib/redis/index.js index d0d503c1..5b154303 100644 --- a/lib/redis/index.js +++ b/lib/redis/index.js @@ -68,7 +68,7 @@ export async function createRedisInstance(config = getRedisConfiguration()) { options.password = config.password; } - const redis = new Redis.Cluster(options); + const redis = new Redis(options); redis.on('error', error => { console.warn('[Redis] Error connecting', error);