buildman: Drop the 'alive' flag in BuilderThread

This is not used, so drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2016-09-18 16:48:38 -06:00 committed by sjg
parent 2f2566482f
commit 2880e6b5e2

View File

@ -470,9 +470,7 @@ class BuilderThread(threading.Thread):
This thread picks a job from the queue, runs it, and then goes to the
next job.
"""
alive = True
while True:
job = self.builder.queue.get()
if alive:
self.RunJob(job)
self.RunJob(job)
self.builder.queue.task_done()