diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-09 13:09:34 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-09 13:09:34 -0700 |
commit | b2d621bb075ccfb73c4662406df2974818744436 (patch) | |
tree | 4e1b23a961bee94a2fad4fe318c1ad31fc3d6f83 /extension/src | |
parent | 924fc27e53bd2503a3f6d3b49a4d5c02b8ace66d (diff) | |
download | sncontinue-b2d621bb075ccfb73c4662406df2974818744436.tar.gz sncontinue-b2d621bb075ccfb73c4662406df2974818744436.tar.bz2 sncontinue-b2d621bb075ccfb73c4662406df2974818744436.zip |
expand max_tokens for large highlighted ranges
Diffstat (limited to 'extension/src')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index 90ec9259..714080e3 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -324,7 +324,14 @@ export async function startContinuePythonServer() { } } console.log("Killing old server..."); - await fkill(":65432"); + try { + await fkill(":65432"); + } catch (e) { + console.log( + "Failed to kill old server, likely because it didn't exist:", + e + ); + } } // Do this after above check so we don't have to waste time setting up the env |