From 7036a7bb250a5d1efd802314d6e5da45b9d61899 Mon Sep 17 00:00:00 2001 From: Matias Puerta Date: Tue, 19 Mar 2024 00:24:11 +0100 Subject: [PATCH] Fix typo in Bitbucket URL (#15602) --- .../src/metadata/ingestion/source/dashboard/looker/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/src/metadata/ingestion/source/dashboard/looker/utils.py b/ingestion/src/metadata/ingestion/source/dashboard/looker/utils.py index 6dcf59345df..1aa900f4d34 100644 --- a/ingestion/src/metadata/ingestion/source/dashboard/looker/utils.py +++ b/ingestion/src/metadata/ingestion/source/dashboard/looker/utils.py @@ -58,7 +58,7 @@ def _clone_repo( if isinstance(credential, GitHubCredentials): url = f"https://x-oauth-basic:{credential.token.__root__.get_secret_value()}@github.com/{repo_name}.git" elif isinstance(credential, BitBucketCredentials): - url = f"https://x-token-auth::{credential.token.__root__.get_secret_value()}@bitbucket.or/{repo_name}.git" + url = f"https://x-token-auth::{credential.token.__root__.get_secret_value()}@bitbucket.org/{repo_name}.git" allow_unsafe_protocols = True assert url is not None