[oe-commits] [bitbake] 05/18: bin/bitbake-worker: Fix invalid bb.msg.fatal usage

git at git.openembedded.org git at git.openembedded.org
Thu May 12 08:41:18 UTC 2016


rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 1ffd8737e065a3cd634c74cd67e634d785ea93a5
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed May 11 22:57:10 2016 +0100

    bin/bitbake-worker: Fix invalid bb.msg.fatal usage
    
    The logging domain specified to bb.msg.fatal was invalid. Replace with
    a logger.critical() call instead.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 bin/bitbake-worker | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/bin/bitbake-worker b/bin/bitbake-worker
index a4e8914..5fcffdd 100755
--- a/bin/bitbake-worker
+++ b/bin/bitbake-worker
@@ -159,7 +159,8 @@ def fork_off_task(cfg, data, workerdata, fn, task, taskname, appends, taskdepdat
         pipeout = os.fdopen(pipeout, 'wb', 0)
         pid = os.fork()
     except OSError as e:
-        bb.msg.fatal("RunQueue", "fork failed: %d (%s)" % (e.errno, e.strerror))
+        logger.critical("fork failed: %d (%s)" % (e.errno, e.strerror))
+        sys.exit(1)
 
     if pid == 0:
         def child():

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list