From 09f792e94dda59596ed66445871adcabe5530f33 Mon Sep 17 00:00:00 2001 From: Jon Brighton Date: Mon, 20 Nov 2023 12:29:25 +0000 Subject: [PATCH] Fixing redis password configuration (#43) --- server/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/config.ts b/server/config.ts index ca12e533..57c9d478 100755 --- a/server/config.ts +++ b/server/config.ts @@ -40,7 +40,7 @@ export default { redis: { host: get('REDIS_HOST', 'localhost', requiredInProduction), port: parseInt(process.env.REDIS_PORT, 10) || 6379, - password: process.env.REDIS_AUTH_TOKEN, + password: process.env.REDIS_PASSWORD, tls_enabled: get('REDIS_TLS_ENABLED', 'false'), }, session: {