@dbcube/core 3.0.20 → 3.0.22
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 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -9
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -800,8 +800,7 @@ var QueryEngine = class {
|
|
|
800
800
|
}
|
|
801
801
|
isPortAvailable(port) {
|
|
802
802
|
return new Promise((resolve5) => {
|
|
803
|
-
const
|
|
804
|
-
const tester = net2.createServer();
|
|
803
|
+
const tester = net.createServer();
|
|
805
804
|
tester.once("error", () => resolve5(false));
|
|
806
805
|
tester.once("listening", () => {
|
|
807
806
|
tester.close();
|