fix: use host as prefix of cacheServer if undefined
This commit is contained in:
parent
e61b229229
commit
c51e5074cf
|
@ -55,6 +55,8 @@ export default function load() {
|
|||
mixin.clientEntry = clientManifest["src/init.ts"];
|
||||
|
||||
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);
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ export type Source = {
|
|||
user?: string;
|
||||
tls?: { [y: string]: string };
|
||||
};
|
||||
cacheServer: {
|
||||
cacheServer?: {
|
||||
host: string;
|
||||
port: number;
|
||||
family?: number;
|
||||
|
|
Loading…
Reference in New Issue