From c1d41af147256bd95fd815a0e5431ec35a3af1b2 Mon Sep 17 00:00:00 2001 From: Sagi Dayan Date: Sun, 17 May 2020 20:50:26 -0400 Subject: [PATCH] redis fix (config) --- config/redis.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/redis.js b/config/redis.js index 0749047..e1cc6b3 100644 --- a/config/redis.js +++ b/config/redis.js @@ -32,7 +32,7 @@ module.exports = { | */ local: { - host: Env.get('REDIS_CONNECTION', '127.0.0.1'), + host: Env.get('REDIS_HOST', '127.0.0.1'), port: Number(Env.get('REDIS_PORT', 6379)), password: Env.get('REDIS_PASSWORD', null), db: Number(Env.get('REDIS_DB', 0)),