diff --git a/package.json b/package.json index 75061d98..c54508ef 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "package": "vsce package", "vscode:prepublish": "rm -rf dist && npm run webpack && npm run dsc", "webpack": "vscd --clean && webpack --mode development", - "webpack-dev": "vscd --clean && webpack --mode development --watch", + "webpack-dev": "vscd --clean && webpack --mode development", "typings": "npx -p typescript tsc ./src/extension.ts --declaration --allowJs --emitDeclarationOnly --outDir types --esModuleInterop -t es2019 --moduleResolution node" }, "contributes": { diff --git a/src/notebooks/Controller.ts b/src/notebooks/Controller.ts index 243015be..52ee68e8 100644 --- a/src/notebooks/Controller.ts +++ b/src/notebooks/Controller.ts @@ -83,7 +83,7 @@ export class IBMiController { // Execute the query const query = selected.job.query(content); - const results = await query.execute(); + const results = await query.execute(1000); const table = results.data; if (table === undefined && results.success && !results.has_results) {