diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-06 17:42:40 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-16 12:31:20 +0100 |
commit | 2d263840b03cfaa93ea8b8bd036273838b7f6a5f (patch) | |
tree | 5e53974d3dd37c4f7637bc1fad642bedb326620e /bitbake/lib | |
parent | 3cd042f5055eb217e71213fbe2243575d604c186 (diff) | |
download | poky-2d263840b03cfaa93ea8b8bd036273838b7f6a5f.tar.gz |
bitbake: runqueue: Fix number of running tasks accounting (include failed tasks)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: | |||
1058 | 1058 | ||
1059 | bb.event.fire(runQueueTaskStarted(task, self.stats, self), self.cfgData) | 1059 | bb.event.fire(runQueueTaskStarted(task, self.stats, self), self.cfgData) |
1060 | bb.msg.note(1, bb.msg.domain.RunQueue, | 1060 | bb.msg.note(1, bb.msg.domain.RunQueue, |
1061 | "Running task %d of %d (ID: %s, %s)" % (self.stats.completed + self.stats.active + 1, | 1061 | "Running task %d of %d (ID: %s, %s)" % (self.stats.completed + self.stats.active + self.stats.failed + 1, |
1062 | self.stats.total, | 1062 | self.stats.total, |
1063 | task, | 1063 | task, |
1064 | self.get_user_idstring(task))) | 1064 | self.get_user_idstring(task))) |