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>2019-02-25 22:27:46 +0000
commit83dbc768d3b1d8d2d56a35afc605499d8e032d46 (patch)
tree691411f72004d50aa809fc9db742bd86eadf744e /bitbake
parentd3b7f2ead56b8d9f3df6bddc0f6b9749dcd562cf (diff)
downloadpoky-83dbc768d3b1d8d2d56a35afc605499d8e032d46.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: c4a940991f261959eb08273d2250d3866b868938) 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 0854d48091..01a4b3030c 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -473,7 +473,7 @@ def connectProcessServer(sockname, featureset):
473 readfd = writefd = readfd1 = writefd1 = readfd2 = writefd2 = None 473 readfd = writefd = readfd1 = writefd1 = readfd2 = writefd2 = None
474 eq = command_chan_recv = command_chan = None 474 eq = command_chan_recv = command_chan = None
475 475
476 sock.settimeout(2) 476 sock.settimeout(10)
477 477
478 try: 478 try:
479 try: 479 try: