From 06afe1fafe977a7a8bc90e0608bb6d6cba6adca7 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 4 Oct 2013 14:17:45 +0100 Subject: bitbake: bin/bitbake: Clear ui-queue when starting a server When starting a server we don't want to show the debug event queue which is reserved for when when errors have occurred. This patch copies the UI code to ensure the user doesn't see confusing output. (Bitbake rev: a886cda58415085981646fb9a024fa7641f55865) Signed-off-by: Richard Purdie --- bitbake/bin/bitbake | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake/bin/bitbake') diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 4d93a35cdc..920c6c4fc6 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -292,6 +292,7 @@ def main(): if not configParams.remote_server: # we start a server with a given configuration server = start_server(servermodule, configParams, configuration) + bb.event.ui_queue = [] else: # we start a stub server that is actually a XMLRPClient that connects to a real server server = servermodule.BitBakeXMLRPCClient(configParams.observe_only) -- cgit v1.2.3-54-g00ecf