fix (backend): use correct cache key prefix
This commit is contained in:
parent
357ee6e656
commit
093ce6b5ec
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ export const db = new DataSource({
|
||||||
family: config.redis.family == null ? 0 : config.redis.family,
|
family: config.redis.family == null ? 0 : config.redis.family,
|
||||||
username: config.redis.user ?? "default",
|
username: config.redis.user ?? "default",
|
||||||
password: config.redis.pass,
|
password: config.redis.pass,
|
||||||
keyPrefix: `${config.redis.prefix}:query:`,
|
keyPrefix: `${config.redisKeyPrefix}:query:`,
|
||||||
db: config.redis.db || 0,
|
db: config.redis.db || 0,
|
||||||
tls: config.redis.tls,
|
tls: config.redis.tls,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue