From 5cd309570913c45d5e085d1968d19b97d4f04b82 Mon Sep 17 00:00:00 2001 From: Clay Gerrard Date: Wed, 25 Jan 2017 12:26:40 -0800 Subject: [PATCH] Give spawn a cycle This fixes an annoying race when running the reconstrcutor in interactive mode on dev machine with not much in the way of data. I'm not sure why. Drive-By: kill useless continue Closes-Bug: #1653174 Change-Id: I778c2a929d746ad88fa1ec1d1503d676a8b4ed61 --- swift/obj/reconstructor.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/swift/obj/reconstructor.py b/swift/obj/reconstructor.py index ccc5f137de..0f0cdb067c 100644 --- a/swift/obj/reconstructor.py +++ b/swift/obj/reconstructor.py @@ -557,7 +557,6 @@ class ObjectReconstructor(Daemon): self.logger.exception( 'Unable to purge DiskFile (%r %r %r)', object_hash, timestamps['ts_data'], frag_index) - continue def process_job(self, job): """ @@ -911,11 +910,11 @@ class ObjectReconstructor(Daemon): stats = spawn(self.heartbeat) lockup_detector = spawn(self.detect_lockups) - sleep() # Give spawns a cycle try: self.run_pool = GreenPool(size=self.concurrency) for part_info in self.collect_parts(**kwargs): + sleep() # Give spawns a cycle if not self.check_ring(part_info['policy'].object_ring): self.logger.info(_("Ring change detected. Aborting " "current reconstruction pass."))