From ef61bdc3a8ec4a805c68204f73cc4c2f4f0ff9fc Mon Sep 17 00:00:00 2001 From: Mayur Singal <39544459+ulixius9@users.noreply.github.com> Date: Tue, 19 Mar 2024 14:36:24 +0530 Subject: [PATCH] MINOR: Looker fix bitbucket protocol (#15604) --- .../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 1aa900f4d34..d4b237f7546 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.org/{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