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:
Martin Jansa 2021-08-27 20:41:05 +02:00 committed by Richard Purdie
parent 7bd62cf73b
commit c3af55d95c
3 changed files with 3 additions and 3 deletions

View File

@ -517,5 +517,5 @@ except BaseException as e:
worker_thread_exit = True
worker_thread.join()
workerlog_write("exitting")
workerlog_write("exiting")
sys.exit(0)

View File

@ -382,7 +382,7 @@ class BBCooker:
try:
self.prhost = prserv.serv.auto_start(self.data)
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":
# Create a new hash server bound to a unix domain socket

View File

@ -471,7 +471,7 @@ class BitBakeServer(object):
try:
r = ready.get()
except EOFError:
# Trap the child exitting/closing the pipe and error out
# Trap the child exiting/closing the pipe and error out
r = None
if not r or r[0] != "r":
ready.close()