Skip to content

Commit

Permalink
fixed wrong default value of previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
st-vi committed Oct 18, 2023
1 parent 3766362 commit 6bb2f48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WebSocketClient/UVLPlayground/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export const startPythonClient = async () => {

// create the web socket and configure to start the language client on open, can add extra parameters to the url if needed.
createWebSocket(createUrl(
process.env.UVLS_HOST_NAME === undefined ? 'http://590c9306-8ced-48f6-85f2-bb8caa1bfd52.ul.bw-cloud-instance.org/' : process.env.UVLS_HOST_NAME,
process.env.UVLS_HOST_NAME === undefined ? '590c9306-8ced-48f6-85f2-bb8caa1bfd52.ul.bw-cloud-instance.org' : process.env.UVLS_HOST_NAME,
process.env.PORT === undefined ? 30000 : parseInt(process.env.PORT),
'/pyright', {
// Used to parse an auth token or additional parameters such as import IDs to the language server
Expand Down

0 comments on commit 6bb2f48

Please sign in to comment.