Skip to content
Snippets Groups Projects
Commit 0f9c08dc authored by Guido Trotter's avatar Guido Trotter
Browse files

Add JobQueue.SafeLoadJobFromDisk


This will be used to read a job file without having to deal with
exceptions from _LoadJobFromDisk.

Signed-off-by: default avatarGuido Trotter <ultrotter@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 3d6c5566
No related branches found
No related tags found
No related merge requests found
......@@ -1046,6 +1046,25 @@ class JobQueue(object):
return [self._LoadJobUnlocked(job_id) for job_id in job_ids]
def SafeLoadJobFromDisk(self, job_id):
"""Load the given job file from disk.
Given a job file, read, load and restore it in a _QueuedJob format.
In case of error reading the job, it gets returned as None, and the
exception is logged.
@type job_id: string
@param job_id: job identifier
@rtype: L{_QueuedJob} or None
@return: either None or the job object
"""
try:
return self._LoadJobFromDisk(job_id)
except (errors.JobFileCorrupted, EnvironmentError):
logging.exception("Can't load/parse job %s", job_id)
return None
@staticmethod
def _IsQueueMarkedDrain():
"""Check if the queue is marked from drain.
......
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