diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-06-09 23:07:32 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-06-09 23:07:32 +0900 |
| commit | 65d359b57ae94ab9f53f995082dde645ebf7bf11 (patch) | |
| tree | 535f946503127e2feb5d270da2dd8303ca8e3994 /src/db | |
| parent | 11.20.1 (diff) | |
| download | sharkey-65d359b57ae94ab9f53f995082dde645ebf7bf11.tar.gz sharkey-65d359b57ae94ab9f53f995082dde645ebf7bf11.tar.bz2 sharkey-65d359b57ae94ab9f53f995082dde645ebf7bf11.zip | |
Fix #5020
Diffstat (limited to 'src/db')
| -rw-r--r-- | src/db/redis.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/redis.ts b/src/db/redis.ts index 6518cb0059..41d030149c 100644 --- a/src/db/redis.ts +++ b/src/db/redis.ts @@ -5,7 +5,7 @@ export default redis.createClient( config.redis.port, config.redis.host, { - auth_pass: config.redis.pass, + password: config.redis.pass, prefix: config.redis.prefix, db: config.redis.db || 0 } |