Skip to content

Commit 2c34685

Browse files
committed
revert reconnect wait times
1 parent 4e8b682 commit 2c34685

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ci/dev/vscode.patch

+2-3
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ index 3715cbb8e6ee41c3d9b5090918d243b723ae2d00..c65de8ad37e727d66da97a8f8b170cbc
689689
-
690690
-
691691
diff --git a/src/vs/platform/remote/common/remoteAgentConnection.ts b/src/vs/platform/remote/common/remoteAgentConnection.ts
692-
index 18d3d04fd20335975293e37b3b641120dd92da20..4ec77056f8b707cb9cfc6af28f995d644b127506 100644
692+
index 18d3d04fd20335975293e37b3b641120dd92da20..b9819d50683f40c41c8a3b1f71423a20916e8394 100644
693693
--- a/src/vs/platform/remote/common/remoteAgentConnection.ts
694694
+++ b/src/vs/platform/remote/common/remoteAgentConnection.ts
695695
@@ -92,7 +92,7 @@ async function connectToRemoteExtensionHostAgent(options: ISimpleConnectionOptio
@@ -747,11 +747,10 @@ index 18d3d04fd20335975293e37b3b641120dd92da20..4ec77056f8b707cb9cfc6af28f995d64
747747
const logPrefix = commonLogPrefix(this._connectionType, this.reconnectionToken, true);
748748
this._options.logService.info(`${logPrefix} starting reconnecting loop. You can get more information with the trace log level.`);
749749
- this._onDidStateChange.fire(new ConnectionLostEvent());
750-
- const TIMES = [5, 5, 10, 10, 10, 10, 10, 30];
751750
+ let suppressPopup = true;
752751
+ let forceDialog = false;
753752
+ this._onDidStateChange.fire(new ConnectionLostEvent(suppressPopup));
754-
+ const TIMES = [1, 2, 3, 10, 10, 10, 10, 30];
753+
const TIMES = [5, 5, 10, 10, 10, 10, 10, 30];
755754
+ const SHOW_POPUP_ON_ATTEMPT = 2 // aka third attempt
756755
+
757756
const disconnectStartTime = Date.now();

0 commit comments

Comments
 (0)