Skip to content

Commit d4dda13

Browse files
committed
fix lint
1 parent 5dd7576 commit d4dda13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metadata-ingestion/src/datahub/cli/cli_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def _ensure_valid_gms_url_acryl_cloud(url: str) -> str:
331331
if "acryl.io" not in url:
332332
return url
333333
if url.endswith(":8080"):
334-
url = url.rstrip(":8080")
334+
url = url.replace(":8080", "")
335335
if url.startswith("http://"):
336336
url = url.replace("http://", "https://")
337337
if url.endswith("acryl.io"):

0 commit comments

Comments
 (0)