parse timeout parameter passed by inqiorer

This commit is contained in:
Kononnable 2019-11-03 17:18:43 +01:00
parent 896698a9d1
commit 16596a0eb2

View File

@ -334,13 +334,13 @@ async function GetUtilParametersByInquirer() {
const { timeout } = (await inquirer.prompt({
message: "Query timeout(ms):",
name: "timeout",
type: "number",
type: "input",
validate(value) {
const valid = !Number.isNaN(parseInt(value, 10));
return valid || "Please enter a valid number";
}
})) as any;
connectionOptions.timeout = timeout;
connectionOptions.timeout = parseInt(timeout, 10);
}
}
const { customizeGeneration } = (await inquirer.prompt([