From: Zac Medico Date: Mon, 13 Sep 2010 02:25:06 +0000 (-0700) Subject: Bug #336142 - Use a longer timeout for ebuild-ipc, in case the system is X-Git-Tag: v2.2_rc81~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a96ae43f6e78c1a8629805a29d188f50196d19ed;p=portage.git Bug #336142 - Use a longer timeout for ebuild-ipc, in case the system is heavily loaded. --- diff --git a/bin/ebuild-ipc.py b/bin/ebuild-ipc.py index 59ff735c9..8fe606db6 100755 --- a/bin/ebuild-ipc.py +++ b/bin/ebuild-ipc.py @@ -34,7 +34,9 @@ portage._disable_legacy_globals() class EbuildIpc(object): - _COMMUNICATE_TIMEOUT_SECONDS = 40 + # If the system is heavily loaded then the parent process might + # be slow to respond, so give it plenty of time (bug #336142). + _COMMUNICATE_TIMEOUT_SECONDS = 900 # 15 minutes _BUFSIZE = 4096 def __init__(self):