From befb322e718bd6d8fd0a2eacfaa60884e5ec362b Mon Sep 17 00:00:00 2001 From: Marcel Moldovan Date: Fri, 29 May 2026 12:49:56 +0300 Subject: [PATCH] [TP-2072] Fix stg SDH url - part 3 --- tests/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common.py b/tests/common.py index be6ea01..1050c7c 100644 --- a/tests/common.py +++ b/tests/common.py @@ -62,7 +62,7 @@ def get_secure_hosting_url(): env_subdomain = os.environ.get("CLARIFAI_GRPC_BASE", "api.clarifai.com").split(".")[0] if env_subdomain == "api-dev-internal": default_secure_data_hosting_url = "https://data-dev-internal.clarifai.com" - elif env_subdomain == "api-staging": + elif env_subdomain == "api-staging-internal": default_secure_data_hosting_url = "https://data-staging-internal.clarifai.com" url = os.environ.get("CLARIFAI_SECURE_HOSTING_URL", default_secure_data_hosting_url) return url