File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -442,6 +442,19 @@ index d0f6e6b18a..1966fd297d 100644
442
442
-
443
443
-
444
444
-
445
+ diff --git a/src/vs/platform/remote/common/remoteAgentConnection.ts b/src/vs/platform/remote/common/remoteAgentConnection.ts
446
+ index eab8591492..26668701f7 100644
447
+ --- a/src/vs/platform/remote/common/remoteAgentConnection.ts
448
+ +++ b/src/vs/platform/remote/common/remoteAgentConnection.ts
449
+ @@ -88,7 +88,7 @@ async function connectToRemoteExtensionHostAgent(options: ISimpleConnectionOptio
450
+ options.socketFactory.connect(
451
+ options.host,
452
+ options.port,
453
+ - `reconnectionToken=${options.reconnectionToken}&reconnection=${options.reconnectionProtocol ? 'true' : 'false'}`,
454
+ + `type=${connectionTypeToString(connectionType)}&reconnectionToken=${options.reconnectionToken}&reconnection=${options.reconnectionProtocol ? 'true' : 'false'}`,
455
+ (err: any, socket: ISocket | undefined) => {
456
+ if (err || !socket) {
457
+ options.logService.error(`${logPrefix} socketFactory.connect() failed. Error:`);
445
458
diff --git a/src/vs/server/browser/client.ts b/src/vs/server/browser/client.ts
446
459
new file mode 100644
447
460
index 0000000000..95e70869f2
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " code-server" ,
3
3
"license" : " MIT" ,
4
- "version" : " 3.0.0 " ,
4
+ "version" : " 3.0.1 " ,
5
5
"scripts" : {
6
6
"clean" : " ci/clean.sh" ,
7
7
"vscode" : " ci/vscode.sh" ,
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ Our changes include:
53
53
- Make extensions work in the browser.
54
54
- Fix getting permanently disconnected when you sleep or hibernate for a while.
55
55
- Make it possible to automatically update the binary.
56
+ - Add connection type to web socket query parameters.
56
57
57
58
## Future
58
59
You can’t perform that action at this time.
0 commit comments