aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-08-14 14:09:43 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-08-14 15:36:29 +0100
commit85fe627fdb6510f0942917964386fad9d8c479c8 (patch)
tree274b6d9c74e67832a5114dfe1b2b736ab43b6fd1 /lib
parent1bf5be46f92f125193638cf41ff207d68f592259 (diff)
downloadbitbake-85fe627fdb6510f0942917964386fad9d8c479c8.tar.gz
runqueue: Drop debug statement causing performance issues
This debug statement could result in a long list of tasks which when repeatedly sent over our IPC, slowed down the builds immensely. Remove it in favour of other more targeted debugging added recently, bringing back some lost performance, particularly on builds with large numbers of tasks. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index a04703c87..b571dde4b 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2189,8 +2189,6 @@ class RunQueueExecute:
for dep in self.sqdata.sq_covered_tasks[tid]:
if dep not in self.runq_complete:
self.holdoff_tasks.add(dep)
- logger.debug(2, "Holding off tasks %s" % pprint.pformat(self.holdoff_tasks))
-
def process_possible_migrations(self):