fix: 🩹 use redis user for bull and postgres cache interface

Follow up #10366, d96877033be9790d11b0212ab8825f93202d22a2
This commit is contained in:
ThatOneCalculator 2023-06-26 15:06:32 -07:00
parent 83089e49d8
commit ff9cba565f
2 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,7 @@ export const db = new DataSource({
host: config.redis.host,
port: config.redis.port,
family: config.redis.family == null ? 0 : config.redis.family,
user: "default",
user: config.redis.user ?? "default",
password: config.redis.pass,
keyPrefix: `${config.redis.prefix}:query:`,
db: config.redis.db || 0,

View File

@ -7,7 +7,7 @@ export function initialize<T>(name: string, limitPerSec = -1) {
port: config.redis.port,
host: config.redis.host,
family: config.redis.family == null ? 0 : config.redis.family,
user: "default",
user: config.redis.user ?? "default",
password: config.redis.pass,
db: config.redis.db || 0,
tls: {