empty object instead of undefined

This commit is contained in:
sparrow 2023-06-28 02:11:02 +01:00
parent cc32d09913
commit 2f1e9696a8
3 changed files with 3 additions and 3 deletions

View file

@ -214,7 +214,7 @@ export const db = new DataSource({
tls: config.redis.tls ? { tls: config.redis.tls ? {
host: config.redis.host, host: config.redis.host,
rejectUnauthorized: false, // TODO make configurable rejectUnauthorized: false, // TODO make configurable
} : undefined, } : {},
}, },
} }
: false, : false,

View file

@ -13,7 +13,7 @@ export function createConnection() {
tls: config.redis.tls ? { tls: config.redis.tls ? {
rejectUnauthorized: false, //TODO make configurable rejectUnauthorized: false, //TODO make configurable
host: config.redis.host, host: config.redis.host,
} : undefined, } : {},
}); });
} }

View file

@ -12,7 +12,7 @@ export function initialize<T>(name: string, limitPerSec = -1) {
db: config.redis.db || 0, db: config.redis.db || 0,
tls: config.redis.tls ? { tls: config.redis.tls ? {
host: config.redis.host, //TODO add configurable cert validation host: config.redis.host, //TODO add configurable cert validation
} : undefined, } : {},
}, },
prefix: config.redis.prefix ? `${config.redis.prefix}:queue` : "queue", prefix: config.redis.prefix ? `${config.redis.prefix}:queue` : "queue",
limiter: limiter: