Skip to content

Commit

Permalink
Fix path substitution for file:// URIs (#1251)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Mueller <[email protected]>
  • Loading branch information
nfzd and Michael Mueller authored May 31, 2024
1 parent 6ae7497 commit 7fcd315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clearml/storage/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2815,7 +2815,7 @@ def get_driver_direct_access(self, path):
:param str path: file path to check access to
:return: Return the string representation of the file as path if have access to it, else None
"""

path = self._canonize_url(path)
return self._driver.get_direct_access(path)

@classmethod
Expand Down

0 comments on commit 7fcd315

Please sign in to comment.