Fix for TypeError: The "config.options.requestTimeout" property… (#213)
Fix for TypeError: The "config.options.requestTimeout" property must be of type number.
This commit is contained in:
commit
01ac9f28c2
@ -340,7 +340,7 @@ async function GetUtilParametersByInquirer() {
|
||||
return valid || "Please enter a valid number";
|
||||
}
|
||||
})) as any;
|
||||
connectionOptions.timeout = timeout;
|
||||
connectionOptions.timeout = parseInt(timeout, 10);
|
||||
}
|
||||
}
|
||||
const { customizeGeneration } = (await inquirer.prompt([
|
||||
|
Loading…
Reference in New Issue
Block a user