mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
fix: disable redis tls if undefined in config
This commit is contained in:
parent
360a1e04dd
commit
8a28592fbd
4 changed files with 7 additions and 7 deletions
|
@ -20,11 +20,11 @@ export type Source = {
|
|||
host: string;
|
||||
port: number;
|
||||
family?: number;
|
||||
pass: string;
|
||||
pass?: string;
|
||||
db?: number;
|
||||
prefix?: string;
|
||||
user?: string;
|
||||
tls?: { [x: string]: string };
|
||||
tls?: { [y: string]: string };
|
||||
};
|
||||
elasticsearch: {
|
||||
host: string;
|
||||
|
|
|
@ -207,11 +207,11 @@ export const db = new DataSource({
|
|||
host: config.redis.host,
|
||||
port: config.redis.port,
|
||||
family: config.redis.family == null ? 0 : config.redis.family,
|
||||
user: config.redis.user ?? "default",
|
||||
username: config.redis.user ?? "default",
|
||||
password: config.redis.pass,
|
||||
keyPrefix: `${config.redis.prefix}:query:`,
|
||||
db: config.redis.db || 0,
|
||||
tls: config.redis.tls || {},
|
||||
tls: config.redis.tls,
|
||||
},
|
||||
}
|
||||
: false,
|
||||
|
|
|
@ -10,7 +10,7 @@ export function createConnection() {
|
|||
username: config.redis.user ?? "default",
|
||||
keyPrefix: `${config.redis.prefix}:`,
|
||||
db: config.redis.db || 0,
|
||||
tls: config.redis.tls || {},
|
||||
tls: config.redis.tls,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -7,10 +7,10 @@ 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: config.redis.user ?? "default",
|
||||
username: config.redis.user ?? "default",
|
||||
password: config.redis.pass,
|
||||
db: config.redis.db || 0,
|
||||
tls: config.redis.tls || {},
|
||||
tls: config.redis.tls,
|
||||
},
|
||||
prefix: config.redis.prefix ? `${config.redis.prefix}:queue` : "queue",
|
||||
limiter:
|
||||
|
|
Loading…
Reference in a new issue