summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-11-22 10:24:43 +0800
committerMartin Jansa <Martin.Jansa@gmail.com>2022-04-08 11:31:58 +0200
commitd09b48bd638e2f2e0f1d105c2a22afc6ee828107 (patch)
tree4919a8c14704f03c1b3e7b59e087af31c756611d
parent419d7f3b5002b72dec8322c9ed0fd88a2aa54fcf (diff)
downloadbitbake-contrib-d09b48bd638e2f2e0f1d105c2a22afc6ee828107.tar.gz
bitbake: correct deprecation warning in process.py
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--lib/bb/server/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index 3e99bcef8..0210ccb7e 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -654,7 +654,7 @@ class BBUIEventQueue:
self.reader = ConnectionReader(readfd)
self.t = threading.Thread()
- self.t.setDaemon(True)
+ self.t.daemon = True
self.t.run = self.startCallbackHandler
self.t.start()