mirror of
https://github.com/clearml/clearml
synced 2025-03-03 10:42:00 +00:00
Fix cleanup fail silently does not remove all entries
This commit is contained in:
parent
097bf23481
commit
977d68169b
@ -197,7 +197,7 @@ class CacheManager(object):
|
||||
pass
|
||||
else:
|
||||
try:
|
||||
shutil.rmtree(f.as_posix())
|
||||
shutil.rmtree(f.as_posix(), ignore_errors=False)
|
||||
except Exception as e:
|
||||
# failed deleting folder
|
||||
LoggerRoot.get_base_logger().debug(
|
||||
|
Loading…
Reference in New Issue
Block a user