fixed target quarrantine path

This commit is contained in:
John Dickinson 2010-10-18 17:30:26 -05:00
parent 1044a0160d
commit ad7343e144

View File

@ -124,8 +124,9 @@ class ObjectAuditor(Daemon):
self.logger.error('ERROR Object %s failed audit and will be '
'quarantined: %s' % (path, err))
invalidate_hash(os.path.dirname(path))
renamer(os.path.dirname(path), os.path.join(self.devices, device,
'quarantined', 'objects', os.path.basename(path)))
renamer_path = os.path.dirname(path)
renamer(renamer_path, os.path.join(self.devices, device,
'quarantined', 'objects', os.path.basename(renamer_path)))
return
except Exception:
self.errors += 1