diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-08-27 20:41:05 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-01 18:56:25 +0100 |
commit | b978f7c3a028ff4cc61de79d296723b5f873651d (patch) | |
tree | 817138fa37f76f20dcad9d55a658837c2aafb08a /bitbake | |
parent | 7df5f405cee0d31be82bc838be048ea01005a327 (diff) | |
download | poky-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')
-rwxr-xr-x | bitbake/bin/bitbake-worker | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/cooker.py | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/server/process.py | 2 |
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: | |||
517 | worker_thread_exit = True | 517 | worker_thread_exit = True |
518 | worker_thread.join() | 518 | worker_thread.join() |
519 | 519 | ||
520 | workerlog_write("exitting") | 520 | workerlog_write("exiting") |
521 | sys.exit(0) | 521 | sys.exit(0) |
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() |