File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ coverage
23
23
# Environment varibles
24
24
* .env
25
25
* .env.test
26
+ * .env copy
26
27
27
28
# keys
28
29
keys /*
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { redis } from '../config';
2
2
import { createClient } from 'redis' ;
3
3
import Logger from '../core/Logger' ;
4
4
5
- const redisURL = `redis://${ redis . password } @${ redis . host } :${ redis . port } ` ;
5
+ const redisURL = `redis://: ${ redis . password } @${ redis . host } :${ redis . port } ` ;
6
6
7
7
const client = createClient ( { url : redisURL } ) ;
8
8
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export const logDirectory = process.env.LOG_DIR;
27
27
export const redis = {
28
28
host : process . env . REDIS_HOST || '' ,
29
29
port : parseInt ( process . env . REDIS_PORT || '0' ) ,
30
- password : process . env . REDIS_USER_PASSWORD || '' ,
30
+ password : process . env . REDIS_PASSWORD || '' ,
31
31
} ;
32
32
33
33
export const caching = {
You can’t perform that action at this time.
0 commit comments