File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1811,7 +1811,7 @@ index 0000000000..1166835371
1811
1811
+ }
1812
1812
diff --git a/src/vs/server/node/connection.ts b/src/vs/server/node/connection.ts
1813
1813
new file mode 100644
1814
- index 0000000000..23934687de
1814
+ index 0000000000..36e80fb696
1815
1815
--- /dev/null
1816
1816
+++ b/src/vs/server/node/connection.ts
1817
1817
@@ -0,0 +1,157 @@
@@ -1878,7 +1878,7 @@ index 0000000000..23934687de
1878
1878
+ protected doDispose(): void {
1879
1879
+ this.protocol.sendDisconnect();
1880
1880
+ this.protocol.dispose();
1881
- + this.protocol.getSocket ().end ();
1881
+ + this.protocol.getUnderlyingSocket ().destroy ();
1882
1882
+ }
1883
1883
+
1884
1884
+ protected doReconnect(socket: ISocket, buffer: VSBuffer): void {
@@ -1905,7 +1905,7 @@ index 0000000000..23934687de
1905
1905
+ if (this.process) {
1906
1906
+ this.process.kill();
1907
1907
+ }
1908
- + this.protocol.getSocket ().end ();
1908
+ + this.protocol.getUnderlyingSocket ().destroy ();
1909
1909
+ }
1910
1910
+
1911
1911
+ protected doReconnect(socket: ISocket, buffer: VSBuffer): void {
You can’t perform that action at this time.
0 commit comments