aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/server
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-07-07 15:41:41 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-07-07 15:48:30 +0100
commitcb241fb8544dfb05646dbae1a1b04e17878a466c (patch)
treee462bcf4a90c775591d0aebbc321aaac7377760c /lib/bb/server
parent412bfab8721ea317898a1974f6a7a0d0bea763df (diff)
downloadbitbake-cb241fb8544dfb05646dbae1a1b04e17878a466c.tar.gz
event: Queue offline events for the UI
Messages printed when no UI is connected (e.g. memres) are currently lost. Use the existing queue mechanism to queue these until a UI attaches, then replay them. This isn't ideal but better than the current situation of losing them entirely. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/server')
-rw-r--r--lib/bb/server/process.py2
-rw-r--r--lib/bb/server/xmlrpc.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index 9ca2b6958..f8d676785 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -137,7 +137,7 @@ class ProcessServer(Process, BaseImplServer):
logger.exception('Running command %s', command)
self.event_queue.close()
- bb.event.unregister_UIHhandler(self.event_handle.value)
+ bb.event.unregister_UIHhandler(self.event_handle.value, True)
self.command_channel.close()
self.cooker.shutdown(True)
self.quitout.close()
diff --git a/lib/bb/server/xmlrpc.py b/lib/bb/server/xmlrpc.py
index a06007f5a..d0f5a6d6d 100644
--- a/lib/bb/server/xmlrpc.py
+++ b/lib/bb/server/xmlrpc.py
@@ -125,7 +125,7 @@ class BitBakeServerCommands():
"""
Unregister a remote UI Event Handler
"""
- return bb.event.unregister_UIHhandler(handlerNum)
+ return bb.event.unregister_UIHhandler(handlerNum, True)
def runCommand(self, command):
"""