summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/server/process.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index b627ae0ab6..4b35be62cd 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -329,7 +329,7 @@ class ProcessServer():
329 bb.error("Idle thread terminated, main thread exiting too") 329 bb.error("Idle thread terminated, main thread exiting too")
330 self.quit = True 330 self.quit = True
331 331
332 nextsleep = 0.1 332 nextsleep = 1.0
333 if self.xmlrpc: 333 if self.xmlrpc:
334 nextsleep = self.xmlrpc.get_timeout(nextsleep) 334 nextsleep = self.xmlrpc.get_timeout(nextsleep)
335 try: 335 try:
@@ -439,7 +439,7 @@ class ProcessServer():
439 self.idle_cond.notify_all() 439 self.idle_cond.notify_all()
440 440
441 while not self.quit: 441 while not self.quit:
442 nextsleep = 0.1 442 nextsleep = 1.0
443 fds = [] 443 fds = []
444 444
445 with bb.utils.lock_timeout(self._idlefuncsLock): 445 with bb.utils.lock_timeout(self._idlefuncsLock):