diff options
author | sestinj <sestinj@gmail.com> | 2023-08-10 01:39:09 -0700 |
---|---|---|
committer | sestinj <sestinj@gmail.com> | 2023-08-10 01:39:09 -0700 |
commit | 43d55d705d204ebc7ecb05bdaec2b32b6cb9d07f (patch) | |
tree | cfaefe120d1d7ff4e73c01e57f538ff9ec1eec27 /extension/src/activation | |
parent | 94ff4ec95fc2c078fc164e20c9f99fccad5616e7 (diff) | |
download | sncontinue-43d55d705d204ebc7ecb05bdaec2b32b6cb9d07f.tar.gz sncontinue-43d55d705d204ebc7ecb05bdaec2b32b6cb9d07f.tar.bz2 sncontinue-43d55d705d204ebc7ecb05bdaec2b32b6cb9d07f.zip |
Remove clientgen, fix windows startup errors
Diffstat (limited to 'extension/src/activation')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index c2ac0b22..f0e41ca9 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -237,10 +237,14 @@ export async function startContinuePythonServer() { }; try { const child = spawn(destination, { - detached: true, - stdio: "ignore", windowsHide: true, }); + child.stdout.on("data", (data: any) => { + console.log(`stdout: ${data}`); + }); + child.stderr.on("data", (data: any) => { + console.log(`stderr: ${data}`); + }); child.on("error", (err: any) => { if (attempts < maxAttempts) { retry(); @@ -248,7 +252,12 @@ export async function startContinuePythonServer() { console.error("Failed to start subprocess.", err); } }); - child.unref(); + child.on("exit", (code: any, signal: any) => { + console.log("Subprocess exited with code", code, signal); + }); + child.on("close", (code: any, signal: any) => { + console.log("Subprocess closed with code", code, signal); + }); } catch (e: any) { console.log("Error starting server:", e); retry(); |