aboutsummaryrefslogtreecommitdiffstats
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:21 +0100
commit1ff1ea3880d293b14ce0fc65e3bc4c938d587a2f (patch)
tree5627e773553391678c7549906e273b3c827fffe6
parentc2cdda0e5fc720c60d3b8537fc702cb118981bd2 (diff)
downloadbitbake-1ff1ea3880d293b14ce0fc65e3bc4c938d587a2f.tar.gz
cooker/process: Fix typos in exiting message
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbin/bitbake-worker2
-rw-r--r--lib/bb/cooker.py2
-rw-r--r--lib/bb/server/process.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/bin/bitbake-worker b/bin/bitbake-worker
index 7765b9368..7d982f90b 100755
--- a/bin/bitbake-worker
+++ b/bin/bitbake-worker
@@ -517,5 +517,5 @@ except BaseException as e:
worker_thread_exit = True
worker_thread.join()
-workerlog_write("exitting")
+workerlog_write("exiting")
sys.exit(0)
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 55eed0925..db991702e 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -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, check the bitbake-cookerdaemon.log")
+ bb.fatal("Unable to start PR Server, exiting, check the bitbake-cookerdaemon.log")
if self.data.getVar("BB_HASHSERVE") == "auto":
# Create a new hash server bound to a unix domain socket
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index 6127fd40e..b593830cc 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -473,7 +473,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()