diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-28 12:13:07 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-28 12:13:07 -0700 |
commit | 8b95ef7de258de8498b328d9e6107a95f57f8d2c (patch) | |
tree | b140145d0d2db756d6fcca9fba1c6f7eb2e700a6 /extension/src/activation | |
parent | f6fe993a782d68cf9eb0ba91c964914e4d1baf17 (diff) | |
download | sncontinue-8b95ef7de258de8498b328d9e6107a95f57f8d2c.tar.gz sncontinue-8b95ef7de258de8498b328d9e6107a95f57f8d2c.tar.bz2 sncontinue-8b95ef7de258de8498b328d9e6107a95f57f8d2c.zip |
fix: :ambulance: logging to file causing problems with starting server
Diffstat (limited to 'extension/src/activation')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index 146a6e37..04bcd0b6 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -463,9 +463,8 @@ export async function startContinuePythonServer() { const command = `cd "${serverPath()}" && ${activateCmd} && cd .. && ${pythonCmd} -m server.run_continue_server`; - console.log("Starting Continue python server..."); - return new Promise(async (resolve, reject) => { + console.log("Starting Continue python server..."); try { const child = spawn(command, { shell: true, |