summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-10-19 10:06:14 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-23 17:47:38 +0100
commit372e40092b4d0604b6957ae10fbf22168a20dc97 (patch)
tree5e598374a8afa7141f6c012397e51ad4d7d6bf29 /bitbake
parentc71964cd2980a4f088904201f69f76ac164b4015 (diff)
downloadpoky-372e40092b4d0604b6957ae10fbf22168a20dc97.tar.gz
bitbake: bitbake: correct deprecation warning in process.py
(Bitbake rev: 1c422329c3b88a91a6faeacbba3b6104d66ba7a1) 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: Justin Bronder <jsbronder@cold-front.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-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 45f2e86319..43061eb3c8 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -587,7 +587,7 @@ class BBUIEventQueue:
587 self.reader = ConnectionReader(readfd) 587 self.reader = ConnectionReader(readfd)
588 588
589 self.t = threading.Thread() 589 self.t = threading.Thread()
590 self.t.setDaemon(True) 590 self.t.daemon = True
591 self.t.run = self.startCallbackHandler 591 self.t.run = self.startCallbackHandler
592 self.t.start() 592 self.t.start()
593 593