skyeye-sdk-js 1.2.2 → 1.2.3
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/src/SkyEyeClient.js +1 -1
- package/package.json +1 -1
- package/src/SkyEyeClient.ts +1 -1
package/dist/src/SkyEyeClient.js
CHANGED
|
@@ -910,7 +910,7 @@ class SkyEyeClient extends skyeye_rpc_grpc_pb_1.JSONTransmissionClient {
|
|
|
910
910
|
setTimeout(() => __awaiter(this, void 0, void 0, function* () {
|
|
911
911
|
yield this.setWorkingDirectory(pathSkyEye, port);
|
|
912
912
|
yield this.runScript(fileName, port);
|
|
913
|
-
}),
|
|
913
|
+
}), 2000);
|
|
914
914
|
return "1";
|
|
915
915
|
}
|
|
916
916
|
catch (error) {
|
package/package.json
CHANGED
package/src/SkyEyeClient.ts
CHANGED
|
@@ -848,7 +848,7 @@ export class SkyEyeClient extends JSONTransmissionClient {
|
|
|
848
848
|
setTimeout(async () => {
|
|
849
849
|
await this.setWorkingDirectory(pathSkyEye, port);
|
|
850
850
|
await this.runScript(fileName, port);
|
|
851
|
-
},
|
|
851
|
+
}, 2000);
|
|
852
852
|
|
|
853
853
|
return "1";
|
|
854
854
|
} catch (error) {
|