diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-15 18:47:28 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-15 18:47:28 -0700 |
commit | 176087be502ce6663c3b3128352a69f8c7409666 (patch) | |
tree | bb9eb75fcf2c34a1fdcdb0ba8e4b98a2bd5b17a2 /extension/src/activation/environmentSetup.ts | |
parent | 14654a3db55dd73b0a099d4acbca6494c612d3d3 (diff) | |
download | sncontinue-176087be502ce6663c3b3128352a69f8c7409666.tar.gz sncontinue-176087be502ce6663c3b3128352a69f8c7409666.tar.bz2 sncontinue-176087be502ce6663c3b3128352a69f8c7409666.zip |
5s timeout on websocket connections
Diffstat (limited to 'extension/src/activation/environmentSetup.ts')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index be1c220c..7a0d24d4 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -28,8 +28,6 @@ async function retryThenFail( ); console.log("Execution policy stdout: ", stdout); console.log("Execution policy stderr: ", stderr); - // Then reload the window for this to take effect - await vscode.commands.executeCommand("workbench.action.reloadWindow"); } } @@ -447,7 +445,8 @@ export async function startContinuePythonServer() { console.log(`stdout: ${data}`); if ( data.includes("Uvicorn running on") || // Successfully started the server - data.includes("address already in use") // The server is already running (probably a simultaneously opened VS Code window) + data.includes("only one usage of each socket address") || // [windows] The server is already running (probably a simultaneously opened VS Code window) + data.includes("address already in use") // [mac/linux] The server is already running (probably a simultaneously opened VS Code window) ) { console.log("Successfully started Continue python server"); resolve(null); |