buildman: Drop the 'alive' flag in BuilderThread
[oweals/u-boot.git] / tools / buildman / builderthread.py
index af4d15a5b42abdaf5755e0e1b921579701ad8625..c4fe21953214f7d9e4f022c6a8686188afe72660 100644 (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()