@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.js CHANGED
@@ -898,7 +898,7 @@ var QueryEngine = class {
898
898
  }
899
899
  this.tcpPort = await this.findAvailablePort(this.tcpPort);
900
900
  return new Promise((resolve5, reject) => {
901
- const serverArgs = [...this.arguments, "--action", "server", "--port", this.tcpPort.toString()];
901
+ const serverArgs = [...this.arguments, "--action", "server", "--tcp-port", this.tcpPort.toString()];
902
902
  const serverProcess = spawn2(this.binary["query_engine"], serverArgs);
903
903
  let started = false;
904
904
  const timeout = setTimeout(() => {