summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2021-08-27 20:41:05 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-01 18:56:25 +0100
commitb978f7c3a028ff4cc61de79d296723b5f873651d (patch)
tree817138fa37f76f20dcad9d55a658837c2aafb08a /bitbake/lib/bb
parent7df5f405cee0d31be82bc838be048ea01005a327 (diff)
downloadpoky-b978f7c3a028ff4cc61de79d296723b5f873651d.tar.gz
bitbake: cooker/process: Fix typos in exiting message
(Bitbake rev: 1ff1ea3880d293b14ce0fc65e3bc4c938d587a2f) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r--bitbake/lib/bb/cooker.py2
-rw-r--r--bitbake/lib/bb/server/process.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 55eed09257..db991702e2 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -382,7 +382,7 @@ class BBCooker:
382 try: 382 try:
383 self.prhost = prserv.serv.auto_start(self.data) 383 self.prhost = prserv.serv.auto_start(self.data)
384 except prserv.serv.PRServiceConfigError as e: 384 except prserv.serv.PRServiceConfigError as e:
385 bb.fatal("Unable to start PR Server, exitting, check the bitbake-cookerdaemon.log") 385 bb.fatal("Unable to start PR Server, exiting, check the bitbake-cookerdaemon.log")
386 386
387 if self.data.getVar("BB_HASHSERVE") == "auto": 387 if self.data.getVar("BB_HASHSERVE") == "auto":
388 # Create a new hash server bound to a unix domain socket 388 # Create a new hash server bound to a unix domain socket
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index 6127fd40e6..b593830cc7 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -473,7 +473,7 @@ class BitBakeServer(object):
473 try: 473 try:
474 r = ready.get() 474 r = ready.get()
475 except EOFError: 475 except EOFError:
476 # Trap the child exitting/closing the pipe and error out 476 # Trap the child exiting/closing the pipe and error out
477 r = None 477 r = None
478 if not r or r[0] != "r": 478 if not r or r[0] != "r":
479 ready.close() 479 ready.close()