From 732a13a627e798f38f80b8371d9abd57a9e4e5ef Mon Sep 17 00:00:00 2001 From: julialawrence Date: Mon, 23 Oct 2023 11:58:25 +0100 Subject: [PATCH] Change service url and remove path var. --- app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.py b/app/app.py index 1922882..5a48f43 100644 --- a/app/app.py +++ b/app/app.py @@ -474,7 +474,7 @@ def vscode_proxy(): # Construct the URL of the VS Code server for this user. vscode_url = ( - f"http://{service_name}.dataaccessmanager.svc.cluster.local:8080/{path}" + f"http://vscode-server-{service_name}.dataaccessmanager.svc.cluster.local:8080/" ) print(f"VSCode URL: {vscode_url}")