summaryrefslogtreecommitdiffstats
path: root/bitbake
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-24 10:13:32 +0100
commitc3af55d95c201b0c968cdcd17835146793357680 (patch)
tree81ec15ba1384912348c0795508555930b8dccc57 /bitbake
parent7bd62cf73b63339e1bf2aa9939c31c8a341634c0 (diff)
downloadpoky-c3af55d95c201b0c968cdcd17835146793357680.tar.gz
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>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/bin/bitbake-worker2
-rw-r--r--bitbake/lib/bb/cooker.py2
-rw-r--r--bitbake/lib/bb/server/process.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/bin/bitbake-worker b/bitbake/bin/bitbake-worker
index 7765b9368b..7d982f90ba 100755
--- a/bitbake/bin/bitbake-worker
+++ b/bitbake/bin/bitbake-worker
@@ -517,5 +517,5 @@ except BaseException as e:
517worker_thread_exit = True 517worker_thread_exit = True
518worker_thread.join() 518worker_thread.join()
519 519
520workerlog_write("exitting") 520workerlog_write("exiting")
521sys.exit(0) 521sys.exit(0)
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index f2beea2d3c..89f1fad083 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") 385 bb.fatal("Unable to start PR Server, exiting")
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 a0955722e3..07bb785a18 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -471,7 +471,7 @@ class BitBakeServer(object):
471 try: 471 try:
472 r = ready.get() 472 r = ready.get()
473 except EOFError: 473 except EOFError:
474 # Trap the child exitting/closing the pipe and error out 474 # Trap the child exiting/closing the pipe and error out
475 r = None 475 r = None
476 if not r or r[0] != "r": 476 if not r or r[0] != "r":
477 ready.close() 477 ready.close()