Skip to content
Snippets Groups Projects
Commit abc1f2ce authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

jqueue: Move archived jobs on all nodes

Otherwise one might have archived jobs back in the list after a master
failover.

Reviewed-by: iustinp
parent af5ebcb1
No related branches found
No related tags found
No related merge requests found
......@@ -377,6 +377,16 @@ class JobQueue(object):
# TODO: check failed_nodes
def _RenameFileUnlocked(self, old, new):
os.rename(old, new)
result = rpc.call_jobqueue_rename(self._nodes, old, new)
for node in self._nodes:
if not result[node]:
logging.error("Moving %s to %s failed on %s", old, new, node)
# TODO: check failed nodes
def _FormatJobID(self, job_id):
if not isinstance(job_id, (int, long)):
raise errors.ProgrammerError("Job ID '%s' not numeric" % job_id)
......@@ -577,7 +587,7 @@ class JobQueue(object):
old = self._GetJobPath(job.id)
new = self._GetArchivedJobPath(job.id)
os.rename(old, new)
self._RenameFileUnlocked(old, new)
logging.debug("Successfully archived job %s", job.id)
finally:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment