summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-12-24 16:27:44 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-12-26 11:10:33 +0000
commitc60de991d5b915bfeb5233aa5f998776fdf19f6d (patch)
treed67dfe2f963e29d1bb574a8d3dbebe8aa9fb41ec /bitbake
parent0b8b2f15658fe797c61507d0e90a46ba18b2f4e8 (diff)
downloadpoky-c60de991d5b915bfeb5233aa5f998776fdf19f6d.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: 8a1f2fcf35d61d83bbafa8fa3ae215fd5f51728b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/server/process.py2
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: