Skip to content

Commit

Permalink
remove dbfs from get remaining path (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomerm-iguazio authored Aug 9, 2023
1 parent 3fad821 commit 0425414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storey/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def get_remaining_path(url):
if "://" in url:
parsed_url = urlparse(url)
scheme = parsed_url.scheme.lower()
if scheme in ("ds", "v3io", "dbfs"):
if scheme in ("ds", "v3io"):
remaining_path = parsed_url.path
elif scheme in ["wasb", "wasbs"]:
remaining_path = f"{parsed_url.username}{parsed_url.path}"
Expand Down

0 comments on commit 0425414

Please sign in to comment.