From fcdff3609174d66f8c4866d3f0adc5c2f23e477e Mon Sep 17 00:00:00 2001 From: elijahbenizzy Date: Mon, 17 Jun 2024 16:22:44 -0700 Subject: [PATCH] Updates client to point to localhost:8241 We can't control the environment, but it's printing out the wrong one for mini-mode, which confuses people. If it prints it out for postgres mode in local env it should redirect through a prompt in the UI. --- ui/sdk/src/hamilton_sdk/api/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/sdk/src/hamilton_sdk/api/constants.py b/ui/sdk/src/hamilton_sdk/api/constants.py index fa95325cd..8ef653fdc 100644 --- a/ui/sdk/src/hamilton_sdk/api/constants.py +++ b/ui/sdk/src/hamilton_sdk/api/constants.py @@ -1,2 +1,2 @@ HAMILTON_API_URL = "http://localhost:8241" -HAMILTON_UI_URL = "http://localhost:8242" +HAMILTON_UI_URL = "http://localhost:8241" # optimizing for mini-mode