empty object instead of undefined

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

View File

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

View File

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

View File

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