From 6bb2f4883869ee11dc5a4bb7d9291199dcbce9c2 Mon Sep 17 00:00:00 2001 From: Stefan Date: Wed, 18 Oct 2023 18:36:22 +0200 Subject: [PATCH] fixed wrong default value of previous commit --- WebSocketClient/UVLPlayground/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebSocketClient/UVLPlayground/src/main.ts b/WebSocketClient/UVLPlayground/src/main.ts index 8c8c69e..5005f1b 100644 --- a/WebSocketClient/UVLPlayground/src/main.ts +++ b/WebSocketClient/UVLPlayground/src/main.ts @@ -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