fix (backend): fix redis key prefix
This commit is contained in:
parent
ccbd6178e4
commit
d41b462a89
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ export function createConnection() {
|
|||
family: source.family ?? 0,
|
||||
password: source.pass,
|
||||
username: source.user ?? "default",
|
||||
keyPrefix: `${source.prefix}:`,
|
||||
keyPrefix: `${config.redisKeyPrefix}:`,
|
||||
db: source.db || 0,
|
||||
tls: source.tls,
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue