diff --git a/lib/jqueue.py b/lib/jqueue.py index 9fb6f789b7c74d6fe90847bddbbc90ee5f245819..b3c7dbb316c8e5c7ee28ebf90f41b3ea884ccef3 100644 --- a/lib/jqueue.py +++ b/lib/jqueue.py @@ -522,7 +522,8 @@ class JobQueue(object): # Get initial list of nodes self._nodes = dict((n.name, n.primary_ip) - for n in self.context.cfg.GetAllNodesInfo().values()) + for n in self.context.cfg.GetAllNodesInfo().values() + if n.master_candidate) # Remove master node try: @@ -596,6 +597,12 @@ class JobQueue(object): # Clean queue directory on added node rpc.RpcRunner.call_jobqueue_purge(node_name) + if not node.master_candidate: + # remove if existing, ignoring errors + self._nodes.pop(node_name, None) + # and skip the replication of the job ids + return + # Upload the whole queue excluding archived jobs files = [self._GetJobPath(job_id) for job_id in self._GetJobIDsUnlocked()]