aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2021-08-27 20:41:05 +0200
committerAnuj Mittal <anuj.mittal@intel.com>2021-09-24 15:03:33 +0800
commit284ca139b3a2ce61cef91b3076fd8bb544461c16 (patch)
tree042c64964eaf9ca5ce448796512769e04ffb3ab0
parentfac319e2d5463be2a82335b9cb348c7893a1e65f (diff)
downloadbitbake-284ca139b3a2ce61cef91b3076fd8bb544461c16.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> (cherry picked from commit 1ff1ea3880d293b14ce0fc65e3bc4c938d587a2f) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-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 f2beea2d3..89f1fad08 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")
+ 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
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index a0955722e..07bb785a1 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -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()