Skip to content

Commit 7036a7b

Browse files
authored
Fix typo in Bitbucket URL (open-metadata#15602)
1 parent 39ab552 commit 7036a7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • ingestion/src/metadata/ingestion/source/dashboard/looker

ingestion/src/metadata/ingestion/source/dashboard/looker/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def _clone_repo(
5858
if isinstance(credential, GitHubCredentials):
5959
url = f"https://x-oauth-basic:{credential.token.__root__.get_secret_value()}@github.com/{repo_name}.git"
6060
elif isinstance(credential, BitBucketCredentials):
61-
url = f"https://x-token-auth::{credential.token.__root__.get_secret_value()}@bitbucket.or/{repo_name}.git"
61+
url = f"https://x-token-auth::{credential.token.__root__.get_secret_value()}@bitbucket.org/{repo_name}.git"
6262
allow_unsafe_protocols = True
6363

6464
assert url is not None

0 commit comments

Comments
 (0)