@dbcube/core 3.2.2 → 3.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -943,7 +943,7 @@ var QueryEngine = class {
|
|
|
943
943
|
}
|
|
944
944
|
this.tcpPort = await this.findAvailablePort(this.tcpPort);
|
|
945
945
|
return new Promise((resolve5, reject) => {
|
|
946
|
-
const serverArgs = [...this.arguments, "--action", "server", "--port", this.tcpPort.toString()];
|
|
946
|
+
const serverArgs = [...this.arguments, "--action", "server", "--tcp-port", this.tcpPort.toString()];
|
|
947
947
|
const serverProcess = (0, import_child_process2.spawn)(this.binary["query_engine"], serverArgs);
|
|
948
948
|
let started = false;
|
|
949
949
|
const timeout = setTimeout(() => {
|