@tiflis-io/tiflis-code-workstation 0.3.17 → 0.3.18
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/main.js +9 -0
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -1606,6 +1606,9 @@ var TunnelClient = class {
|
|
|
1606
1606
|
this.handleRegistrationTimeout();
|
|
1607
1607
|
}
|
|
1608
1608
|
}, CONNECTION_TIMING.REGISTRATION_TIMEOUT_MS);
|
|
1609
|
+
if (this.registrationTimeout.unref) {
|
|
1610
|
+
this.registrationTimeout.unref();
|
|
1611
|
+
}
|
|
1609
1612
|
}
|
|
1610
1613
|
/**
|
|
1611
1614
|
* Handles registration timeout.
|
|
@@ -1729,6 +1732,9 @@ var TunnelClient = class {
|
|
|
1729
1732
|
this.sendToTunnel(ping);
|
|
1730
1733
|
}
|
|
1731
1734
|
}, CONNECTION_TIMING.PING_INTERVAL_MS);
|
|
1735
|
+
if (this.pingInterval.unref) {
|
|
1736
|
+
this.pingInterval.unref();
|
|
1737
|
+
}
|
|
1732
1738
|
}
|
|
1733
1739
|
/**
|
|
1734
1740
|
* Schedules a reconnection attempt.
|
|
@@ -1749,6 +1755,9 @@ var TunnelClient = class {
|
|
|
1749
1755
|
this.scheduleReconnect();
|
|
1750
1756
|
});
|
|
1751
1757
|
}, delay);
|
|
1758
|
+
if (this.reconnectTimeout.unref) {
|
|
1759
|
+
this.reconnectTimeout.unref();
|
|
1760
|
+
}
|
|
1752
1761
|
}
|
|
1753
1762
|
/**
|
|
1754
1763
|
* Flushes buffered messages after reconnection.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiflis-io/tiflis-code-workstation",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.18",
|
|
4
4
|
"description": "Workstation server for tiflis-code - manages agent sessions and terminal access",
|
|
5
5
|
"author": "Roman Barinov <rbarinov@gmail.com>",
|
|
6
6
|
"license": "FSL-1.1-NC",
|