mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 11:57:34 -07:00
Fix: postgres redis cache の option が適用されない (#5114)
This commit is contained in:
parent
638060f775
commit
a4996bd034
1 changed files with 3 additions and 5 deletions
|
@ -150,11 +150,9 @@ export function initDb(justBorrow = false, sync = false, log = false) {
|
||||||
options: {
|
options: {
|
||||||
host: config.redis.host,
|
host: config.redis.host,
|
||||||
port: config.redis.port,
|
port: config.redis.port,
|
||||||
options: {
|
password: config.redis.pass,
|
||||||
password: config.redis.pass,
|
prefix: config.redis.prefix,
|
||||||
prefix: config.redis.prefix,
|
db: config.redis.db || 0
|
||||||
db: config.redis.db || 0
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} : false,
|
} : false,
|
||||||
logging: log,
|
logging: log,
|
||||||
|
|
Loading…
Reference in a new issue