From: Richard Purdie Date: Mon, 10 Mar 2014 00:56:18 +0000 (-0700) Subject: bitbake: knotty: Add missing continue statement for runQueueExitWait event X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=75b9f93638994e15a7a78285b6898d4f33cf6db7;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake: knotty: Add missing continue statement for runQueueExitWait event The continue statement was missing for this event and the event was then listed in the "known safe to ignore list". Clean this up. (Bitbake rev: c4ee342300bf905e6e3bef581c61b86289461536) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 3dada8eac6d..14bdb378d57 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py @@ -320,7 +320,7 @@ def main(server, eventHandler, params, tf = TerminalFilter): if isinstance(event, bb.runqueue.runQueueExitWait): if not main.shutdown: main.shutdown = 1 - + continue if isinstance(event, bb.event.LogExecTTY): if log_exec_tty: tries = event.retries @@ -485,7 +485,6 @@ def main(server, eventHandler, params, tf = TerminalFilter): bb.event.RecipeParsed, bb.event.RecipePreFinalise, bb.runqueue.runQueueEvent, - bb.runqueue.runQueueExitWait, bb.event.OperationStarted, bb.event.OperationCompleted, bb.event.OperationProgress,