mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 13:49:49 +00:00
bitbake: cooker/process: Fix typos in exiting message
(Bitbake rev: 284ca139b3a2ce61cef91b3076fd8bb544461c16) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 1ff1ea3880d293b14ce0fc65e3bc4c938d587a2f) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
7bd62cf73b
commit
c3af55d95c
@@ -517,5 +517,5 @@ except BaseException as e:
|
|||||||
worker_thread_exit = True
|
worker_thread_exit = True
|
||||||
worker_thread.join()
|
worker_thread.join()
|
||||||
|
|
||||||
workerlog_write("exitting")
|
workerlog_write("exiting")
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|||||||
@@ -382,7 +382,7 @@ class BBCooker:
|
|||||||
try:
|
try:
|
||||||
self.prhost = prserv.serv.auto_start(self.data)
|
self.prhost = prserv.serv.auto_start(self.data)
|
||||||
except prserv.serv.PRServiceConfigError as e:
|
except prserv.serv.PRServiceConfigError as e:
|
||||||
bb.fatal("Unable to start PR Server, exitting")
|
bb.fatal("Unable to start PR Server, exiting")
|
||||||
|
|
||||||
if self.data.getVar("BB_HASHSERVE") == "auto":
|
if self.data.getVar("BB_HASHSERVE") == "auto":
|
||||||
# Create a new hash server bound to a unix domain socket
|
# Create a new hash server bound to a unix domain socket
|
||||||
|
|||||||
@@ -471,7 +471,7 @@ class BitBakeServer(object):
|
|||||||
try:
|
try:
|
||||||
r = ready.get()
|
r = ready.get()
|
||||||
except EOFError:
|
except EOFError:
|
||||||
# Trap the child exitting/closing the pipe and error out
|
# Trap the child exiting/closing the pipe and error out
|
||||||
r = None
|
r = None
|
||||||
if not r or r[0] != "r":
|
if not r or r[0] != "r":
|
||||||
ready.close()
|
ready.close()
|
||||||
|
|||||||
Reference in New Issue
Block a user