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>
This commit is contained in:
Richard Purdie
2018-12-24 16:27:44 +00:00
parent 0b8b2f1565
commit c60de991d5

View File

@@ -474,7 +474,7 @@ def connectProcessServer(sockname, featureset):
readfd = writefd = readfd1 = writefd1 = readfd2 = writefd2 = None
eq = command_chan_recv = command_chan = None
sock.settimeout(2)
sock.settimeout(10)
try:
try: