diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-24 16:27:44 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-28 17:03:14 +0000 |
commit | 86209d43654ee924cca0ae078c729c2f82386225 (patch) | |
tree | 603f5d42a848be333bb7d8be5d14e467db0031ad | |
parent | b2660f423e3da797084c86f9683831ce7f02c86a (diff) | |
download | poky-86209d43654ee924cca0ae078c729c2f82386225.tar.gz |
bitbake: process.py: Set socket timeout to 10 seconds
The current value of 2 seconds has shown to be short in
wider testing.
(Bitbake rev: 469cc520593ba52775a373faad03072b7af05dba)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | 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 f7d07266cf..f1fbe3313c 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py | |||
@@ -474,7 +474,7 @@ def connectProcessServer(sockname, featureset): | |||
474 | readfd = writefd = readfd1 = writefd1 = readfd2 = writefd2 = None | 474 | readfd = writefd = readfd1 = writefd1 = readfd2 = writefd2 = None |
475 | eq = command_chan_recv = command_chan = None | 475 | eq = command_chan_recv = command_chan = None |
476 | 476 | ||
477 | sock.settimeout(2) | 477 | sock.settimeout(10) |
478 | 478 | ||
479 | try: | 479 | try: |
480 | try: | 480 | try: |