diff options
Diffstat (limited to 'extension/src/activation/environmentSetup.ts')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index e67a5852..7ca87768 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -346,13 +346,4 @@ export async function startContinuePythonServer(redownload: boolean = true) { // Write the current version of vscode extension to a file called server_version.txt fs.writeFileSync(serverVersionPath(), getExtensionVersion()); - - // If running on remote, forward the port - if ( - vscode.env.remoteName && - vscode.extensions.getExtension("continue.continue")?.extensionKind === - vscode.ExtensionKind.Workspace - ) { - await vscode.env.asExternalUri(vscode.Uri.parse(getContinueServerUrl())); - } } |