mirror of
https://github.com/clearml/clearml
synced 2025-04-08 22:54:44 +00:00
Fix local cache with access rules disabling partial local access
This commit is contained in:
parent
1e1aa10232
commit
452d3c5750
@ -811,7 +811,9 @@ class StorageHelper(object):
|
||||
return local_path
|
||||
if remote_path.startswith("file://"):
|
||||
Path(local_path).parent.mkdir(parents=True, exist_ok=True)
|
||||
shutil.copyfile(direct_access_path, local_path)
|
||||
# use remote_path, because direct_access_path might be None, because of access_rules
|
||||
# len("file://") == 7
|
||||
shutil.copyfile(remote_path[7:], local_path)
|
||||
return local_path
|
||||
# we download into temp_local_path so that if we accidentally stop in the middle,
|
||||
# we won't think we have the entire file
|
||||
|
Loading…
Reference in New Issue
Block a user