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

git at git.openembedded.org git at git.openembedded.org
Mon Jan 28 17:07:18 UTC 2019


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

rpurdie pushed a commit to branch 1.40
in repository bitbake.

commit 469cc520593ba52775a373faad03072b7af05dba
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