From 16596a0eb23f14002ebb69b82a9604ae4f729811 Mon Sep 17 00:00:00 2001 From: Kononnable Date: Sun, 3 Nov 2019 17:18:43 +0100 Subject: [PATCH] parse timeout parameter passed by inqiorer --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 3a3fe4f..099c33d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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([