summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/server/process.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index b66fbe0acd..45f2e86319 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -152,7 +152,8 @@ class ProcessServer(multiprocessing.Process):
152 conn = newconnections.pop(-1) 152 conn = newconnections.pop(-1)
153 fds.append(conn) 153 fds.append(conn)
154 self.controllersock = conn 154 self.controllersock = conn
155 elif self.timeout is None and not ready: 155
156 elif not self.timeout and not ready:
156 print("No timeout, exiting.") 157 print("No timeout, exiting.")
157 self.quit = True 158 self.quit = True
158 159