summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/server/process.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-09 17:58:36 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-10 11:10:01 -0700
commit5dcc20b95400d35ea1b3b1da8ffd9e9cd9a31afb (patch)
treee0c67aa23d8164b17508fc24fc1177f11d2e1889 /bitbake/lib/bb/server/process.py
parentefdc1598d24a0ca0eec5aa96bfed4d76107ec6b9 (diff)
downloadpoky-5dcc20b95400d35ea1b3b1da8ffd9e9cd9a31afb.tar.gz
bitbake: server/process: Drop unnecessary exit delay
When the server exits, we no longer appear to need this delay. This is likely due to improvements in the various exit codepaths. There is therefore no longer any point in taking the latency hit. (Bitbake rev: 8e75ee29ae07e13f23525c5c6045fbf6cdbe7675) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/server/process.py')
-rw-r--r--bitbake/lib/bb/server/process.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index 386294f580..07688a2cdb 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -119,7 +119,6 @@ class ProcessServer(Process, BaseImplServer):
119 bb.event.unregister_UIHhandler(self.event_handle.value) 119 bb.event.unregister_UIHhandler(self.event_handle.value)
120 self.command_channel.close() 120 self.command_channel.close()
121 self.cooker.shutdown(True) 121 self.cooker.shutdown(True)
122 self.idle_commands(.1)
123 122
124 def idle_commands(self, delay, fds = []): 123 def idle_commands(self, delay, fds = []):
125 nextsleep = delay 124 nextsleep = delay