[gnome-continuous-yocto/gnomeostree-3.28-rocko: 7885/8267] bitbake: server/process: Increase runCommand timeout
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-continuous-yocto/gnomeostree-3.28-rocko: 7885/8267] bitbake: server/process: Increase runCommand timeout
- Date: Sun, 17 Dec 2017 06:52:34 +0000 (UTC)
commit 7a822506c0ae402f65c306ce10c05e195138c464
Author: Richard Purdie <richard purdie linuxfoundation org>
Date: Fri Sep 22 17:17:59 2017 +0100
bitbake: server/process: Increase runCommand timeout
We were seeing cases where we could hit the 5s timeout on large/fast machines
running many different tasks at once. Increase this to 30s since the main
connection timeout path should no longer hit this slow path.
[YOCTO #12116]
(Bitbake rev: 131d4b8a5834781a93ed41e2967d8dcd4d80f29a)
Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>
bitbake/lib/bb/server/process.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index 29f87cd..3d31355 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -324,7 +324,7 @@ class ServerCommunicator():
def runCommand(self, command):
self.connection.send(command)
- if not self.recv.poll(5):
+ if not self.recv.poll(30):
raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server")
return self.recv.get()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]