aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-09-16 22:22:37 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-16 22:16:10 +0100
commitaff52fe21a0b27f6302555c1e52a864550eb46ce (patch)
tree613071df3ca996f0c46d12dfbcbc91543edb323c
parent8d3c6cbbe6ee734495713ae3b99c609527842506 (diff)
downloadbitbake-aff52fe21a0b27f6302555c1e52a864550eb46ce.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>
-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 b593830cc..8fdcc66dc 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -661,7 +661,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()