Skip to content

Commit 4f62b0f

Browse files
committed
USe Google Auth for all https not just ones ending in app
1 parent 3a4d3b1 commit 4f62b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/python/ai/chronon/repo/zipline_hub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self, base_url):
1111
if not base_url:
1212
raise ValueError("Base URL for ZiplineHub cannot be empty.")
1313
self.base_url = base_url
14-
if self.base_url.startswith("https") and self.base_url.endswith(".app"):
14+
if self.base_url.startswith("https"):
1515
print("\n 🔐 Using Google Cloud authentication for ZiplineHub.")
1616

1717
# First try to get ID token from environment (GitHub Actions)

0 commit comments

Comments
 (0)