summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-11-22 10:24:43 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-24 10:08:28 +0000
commit9c8e132abd2f386a2e822eca412b9acdf4a016fc (patch)
tree0f6c3422ee2f922ee63bbff2d342115099a35d46
parent0d236d8fafe94dfece36bd305f0bac0464e0b5e2 (diff)
downloadpoky-9c8e132abd2f386a2e822eca412b9acdf4a016fc.tar.gz
bitbake: bitbake: correct deprecation warning in process.py
(Bitbake rev: 35ca8e9fcc20a8ee9efb1356a957e054ad5532d8) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit aff52fe21a0b27f6302555c1e52a864550eb46ce) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/server/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index 07bb785a18..fcdce19717 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -659,7 +659,7 @@ class BBUIEventQueue:
659 self.reader = ConnectionReader(readfd) 659 self.reader = ConnectionReader(readfd)
660 660
661 self.t = threading.Thread() 661 self.t = threading.Thread()
662 self.t.setDaemon(True) 662 self.t.daemon = True
663 self.t.run = self.startCallbackHandler 663 self.t.run = self.startCallbackHandler
664 self.t.start() 664 self.t.start()
665 665