[oe-commits] [bitbake] 02/05: process.py: Set socket timeout to 10 seconds

git at git.openembedded.org git at git.openembedded.org
Wed Dec 26 11:13:14 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository bitbake.

commit 8a1f2fcf35d61d83bbafa8fa3ae215fd5f51728b
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Mon Dec 24 16:27:44 2018 +0000

    process.py: Set socket timeout to 10 seconds
    
    The current value of 2 seconds has shown to be short in
    wider testing.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/server/process.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index f7d0726..f1fbe33 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -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:

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list