1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-31 12:49:46 +00:00

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>
This commit is contained in:
Richard Purdie
2018-12-24 16:27:44 +00:00
parent b2660f423e
commit 86209d4365
+1 -1
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: