Minimize the amount of tasks displayed during the build #1828

This commit is contained in:
Thomas Nagy 2016-10-08 12:53:16 +02:00
parent 6f415aa17a
commit 4417a3c8c1
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
1 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,8 @@ class Spawner(Utils.threading.Thread):
while 1:
task = master.ready.get()
self.sem.acquire()
task.log_display(task.generator.bld)
if not master.stop:
task.log_display(task.generator.bld)
Consumer(self, task)
class Parallel(object):