From 8e75ee29ae07e13f23525c5c6045fbf6cdbe7675 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 9 Mar 2014 17:58:36 -0700 Subject: [PATCH] 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. Signed-off-by: Richard Purdie --- lib/bb/server/process.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py index 386294f5805..07688a2cdb6 100644 --- a/lib/bb/server/process.py +++ b/lib/bb/server/process.py @@ -119,7 +119,6 @@ class ProcessServer(Process, BaseImplServer): bb.event.unregister_UIHhandler(self.event_handle.value) self.command_channel.close() self.cooker.shutdown(True) - self.idle_commands(.1) def idle_commands(self, delay, fds = []): nextsleep = delay -- 2.47.3