summaryrefslogtreecommitdiffstats
path: root/lib/bb/server
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-13 17:31:54 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-13 17:45:37 +0100
commit12e9d33bfae5294e3870dfd1202f63383ad05e92 (patch)
treec46577c42d681ebb992192cf9c6bd860b42be185 /lib/bb/server
parent1193b8d76fcb6cb87e9ec135a2514370d7dd90ac (diff)
downloadopenembedded-core-contrib-12e9d33bfae5294e3870dfd1202f63383ad05e92.tar.gz
cooker: Rename confusing 'stop' state to 'forceshutdown'
The shutdown state causes the server to finish what its doing, stop was them meant to completely stop it. It doesn't mean the server is stopped though. Renaming the current stop event for forceshutdown gives more meaning to what it actually does. The stopped namespace then becomes available to indicate a completely stopped server. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/server')
-rw-r--r--lib/bb/server/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index c0af052ebd..e45e0c2f6d 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -113,7 +113,7 @@ class ProcessServer(Process, BaseImplServer):
self.event_queue.close()
bb.event.unregister_UIHhandler(self.event_handle.value)
self.command_channel.close()
- self.cooker.stop()
+ self.cooker.shutdown(True)
self.idle_commands(.1)
def idle_commands(self, delay, fds = []):