Add config for min

This commit is contained in:
Ajay 2022-05-27 23:23:45 -04:00
parent 4650316067
commit a860b89ef0
2 changed files with 4 additions and 1 deletions

View file

@ -77,7 +77,8 @@ addDefaults(config, {
host: "",
password: "",
port: 5432,
max: 150
max: 150,
min: 10
},
dumpDatabase: {
enabled: false,

View file

@ -23,6 +23,7 @@ if (config.mysql) {
password: config.postgres?.password,
port: config.postgres?.port,
max: config.postgres?.max,
min: config.postgres?.min,
}
});
@ -39,6 +40,7 @@ if (config.mysql) {
password: config.postgres?.password,
port: config.postgres?.port,
max: config.postgres?.max,
min: config.postgres?.min,
}
});
} else {