From: Richard Purdie Date: Tue, 6 Jul 2010 16:42:40 +0000 (+0100) Subject: bitbake: runqueue: Fix number of running tasks accounting (include failed tasks) X-Git-Tag: 2011-1~5273 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=2d263840b03cfaa93ea8b8bd036273838b7f6a5f;p=openembedded-core.git bitbake: runqueue: Fix number of running tasks accounting (include failed tasks) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index d650b65af3..0752411aac 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1058,7 +1058,7 @@ class RunQueue: bb.event.fire(runQueueTaskStarted(task, self.stats, self), self.cfgData) bb.msg.note(1, bb.msg.domain.RunQueue, - "Running task %d of %d (ID: %s, %s)" % (self.stats.completed + self.stats.active + 1, + "Running task %d of %d (ID: %s, %s)" % (self.stats.completed + self.stats.active + self.stats.failed + 1, self.stats.total, task, self.get_user_idstring(task)))