summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oe/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
index 83d298906b..3e016244c5 100644
--- a/meta/lib/oe/utils.py
+++ b/meta/lib/oe/utils.py
@@ -481,7 +481,8 @@ class ThreadedWorker(Thread):
481 try: 481 try:
482 func(self, *args, **kargs) 482 func(self, *args, **kargs)
483 except Exception as e: 483 except Exception as e:
484 print(e) 484 # Eat all exceptions
485 bb.mainlogger.debug("Worker task raised %s" % e, exc_info=e)
485 finally: 486 finally:
486 self.tasks.task_done() 487 self.tasks.task_done()
487 488