adhdev 0.8.86 → 0.8.87
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/cli/index.js +3 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -45653,6 +45653,8 @@ var init_server_connection = __esm({
|
|
|
45653
45653
|
if (misses >= 3 && this.ws) {
|
|
45654
45654
|
LOG.warn("Server", `[ServerConn] Pong timeout (${misses}x) \u2014 closing stale WS`);
|
|
45655
45655
|
this.ws.terminate();
|
|
45656
|
+
} else if (misses === 1) {
|
|
45657
|
+
LOG.info("Server", `[ServerConn] Pong timeout (${misses}x) \u2014 keeping WS open and retrying`);
|
|
45656
45658
|
} else {
|
|
45657
45659
|
LOG.warn("Server", `[ServerConn] Pong timeout (${misses}x) \u2014 keeping WS open and retrying`);
|
|
45658
45660
|
}
|
|
@@ -54675,7 +54677,7 @@ var init_adhdev_daemon = __esm({
|
|
|
54675
54677
|
init_source2();
|
|
54676
54678
|
init_version();
|
|
54677
54679
|
init_src();
|
|
54678
|
-
pkgVersion = resolvePackageVersion({ injectedVersion: "0.8.
|
|
54680
|
+
pkgVersion = resolvePackageVersion({ injectedVersion: "0.8.87" });
|
|
54679
54681
|
AdhdevDaemon = class _AdhdevDaemon {
|
|
54680
54682
|
localHttpServer = null;
|
|
54681
54683
|
localWss = null;
|