From ad7343e144e8f65bb3f6c4251aac56da035e5a21 Mon Sep 17 00:00:00 2001 From: John Dickinson Date: Mon, 18 Oct 2010 17:30:26 -0500 Subject: [PATCH] fixed target quarrantine path --- swift/obj/auditor.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/swift/obj/auditor.py b/swift/obj/auditor.py index 1139d1b69e..546cf3ae8f 100644 --- a/swift/obj/auditor.py +++ b/swift/obj/auditor.py @@ -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