summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 9efd1c86f9..c7f50fdeb1 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -2234,7 +2234,8 @@ class RunQueueExecute:
2234 if self.sq_deferred: 2234 if self.sq_deferred:
2235 tid = self.sq_deferred.pop(list(self.sq_deferred.keys())[0]) 2235 tid = self.sq_deferred.pop(list(self.sq_deferred.keys())[0])
2236 logger.warning("Runqeueue deadlocked on deferred tasks, forcing task %s" % tid) 2236 logger.warning("Runqeueue deadlocked on deferred tasks, forcing task %s" % tid)
2237 self.sq_task_failoutright(tid) 2237 if tid not in self.runq_complete:
2238 self.sq_task_failoutright(tid)
2238 return True 2239 return True
2239 2240
2240 if len(self.failed_tids) != 0: 2241 if len(self.failed_tids) != 0: