fix: use host as prefix of cacheServer if undefined

This commit is contained in:
Namekuji 2023-07-06 17:06:31 -04:00
parent 46c7b3648f
commit e505b0f207
2 changed files with 3 additions and 1 deletions

View file

@ -55,6 +55,8 @@ export default function load() {
mixin.clientEntry = clientManifest["src/init.ts"]; mixin.clientEntry = clientManifest["src/init.ts"];
if (!config.redis.prefix) config.redis.prefix = mixin.host; if (!config.redis.prefix) config.redis.prefix = mixin.host;
if (config.cacheServer && !config.cacheServer.prefix)
config.cacheServer.prefix = mixin.host;
return Object.assign(config, mixin); return Object.assign(config, mixin);
} }

View file

@ -26,7 +26,7 @@ export type Source = {
user?: string; user?: string;
tls?: { [y: string]: string }; tls?: { [y: string]: string };
}; };
cacheServer: { cacheServer?: {
host: string; host: string;
port: number; port: number;
family?: number; family?: number;