From 04254141a048eaed3a28711caeb3475e8f5c2bec Mon Sep 17 00:00:00 2001 From: tomer-mamia <125267619+tomerm-iguazio@users.noreply.github.com> Date: Wed, 9 Aug 2023 14:03:56 +0300 Subject: [PATCH] remove dbfs from get remaining path (#456) --- storey/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storey/utils.py b/storey/utils.py index d2731043..0085b997 100644 --- a/storey/utils.py +++ b/storey/utils.py @@ -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}"