diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-27 23:35:49 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-27 23:35:49 -0700 |
commit | ec4585f2a390186b0828d555c8dff2c65f0fce6a (patch) | |
tree | 3e343801962fa4c370be771b4cab982fa6cd1dc7 /extension/src/activation | |
parent | 1d754c5d3a993712e8c5e1cb582ac9926185e007 (diff) | |
download | sncontinue-ec4585f2a390186b0828d555c8dff2c65f0fce6a.tar.gz sncontinue-ec4585f2a390186b0828d555c8dff2c65f0fce6a.tar.bz2 sncontinue-ec4585f2a390186b0828d555c8dff2c65f0fce6a.zip |
use a more esoteric port than 8000 (65432)
Diffstat (limited to 'extension/src/activation')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index e4f8d6ed..168c79ad 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -218,7 +218,7 @@ export async function startContinuePythonServer() { // Check vscode settings const serverUrl = getContinueServerUrl(); - if (serverUrl !== "http://localhost:8000") { + if (serverUrl !== "http://localhost:65432") { return; } |