Skip to content

Commit

Permalink
HAAR-2297: fix redis config (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-mitchell authored Feb 16, 2024
1 parent d73308e commit 99d04b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 99d04b7

Please sign in to comment.