Fix for issue #23110

This resolves issues when the freshly created directory is removed
by fileserver.update.
This commit is contained in:
Martin Hoefling 2015-05-08 14:31:28 +02:00 committed by rallytime
parent cd34b9b6c4
commit d5ae1d268a

View File

@ -215,6 +215,8 @@ def reap_fileserver_cache_dir(cache_base, find_func):
# This will only remove the directory on the second time
# "_reap_cache" is called (which is intentional)
if len(dirs) == 0 and len(files) == 0:
# only remove if empty directory is older than 60s
if time.time() - os.path.getctime(root) > 60:
os.rmdir(root)
continue
# if not, lets check the files in the directory