From eaf9c660c2f41be97f967fb53bda6a398ba028e8 Mon Sep 17 00:00:00 2001 From: simonmitchell Date: Fri, 16 Feb 2024 17:15:40 +0000 Subject: [PATCH] HAAR-2297: fix redis config --- server/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/config.ts b/server/config.ts index 727ab7f3..e9d4c355 100755 --- a/server/config.ts +++ b/server/config.ts @@ -45,7 +45,7 @@ export default { enabled: get('REDIS_ENABLED', 'false', requiredInProduction) === 'true', 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'), }, enableAuthorizationCode: get('ENABLE_AUTHORIZATION_CODE', 'false') === 'true',