From 923d5567be6fd9969ca74c166f36817ec09305e3 Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Tue, 8 Aug 2017 02:12:08 -0700 Subject: main: Handle BB_SERVER_TIMEOUT = -1 for no server timeout Make BB_SERVER_TIMEOUT = -1 mean no unload forever. Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- lib/bb/server/process.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/bb/server') diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py index 5b8a549f9..338c44835 100644 --- a/lib/bb/server/process.py +++ b/lib/bb/server/process.py @@ -180,7 +180,8 @@ class ProcessServer(multiprocessing.Process): if self.timeout is None: print("No timeout, exiting.") self.quit = True - if not self.haveui and self.lastui and self.timeout and (self.lastui + self.timeout) < time.time(): + if not self.timeout == -1.0 and not self.haveui and self.lastui and self.timeout and \ + (self.lastui + self.timeout) < time.time(): print("Server timeout, exiting.") self.quit = True -- cgit 1.2.3-korg