From 7fcd315c4e4dee713e8ecc7eebdad8532d1c0f20 Mon Sep 17 00:00:00 2001 From: nfzd Date: Fri, 31 May 2024 08:07:45 +0200 Subject: [PATCH] Fix path substitution for file:// URIs (#1251) Co-authored-by: Michael Mueller --- clearml/storage/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml/storage/helper.py b/clearml/storage/helper.py index c7c75a98..dd63d275 100644 --- a/clearml/storage/helper.py +++ b/clearml/storage/helper.py @@ -2815,7 +2815,7 @@ class StorageHelper(object): :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