We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dd7576 commit d4dda13Copy full SHA for d4dda13
metadata-ingestion/src/datahub/cli/cli_utils.py
@@ -331,7 +331,7 @@ def _ensure_valid_gms_url_acryl_cloud(url: str) -> str:
331
if "acryl.io" not in url:
332
return url
333
if url.endswith(":8080"):
334
- url = url.rstrip(":8080")
+ url = url.replace(":8080", "")
335
if url.startswith("http://"):
336
url = url.replace("http://", "https://")
337
if url.endswith("acryl.io"):
0 commit comments