fix (backend): fix redis key prefix

This commit is contained in:
naskya 2024-04-20 07:43:09 +09:00
parent ccbd6178e4
commit d41b462a89
No known key found for this signature in database
GPG Key ID: 712D413B3A9FED5C
1 changed files with 1 additions and 1 deletions

View File

@ -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,
});