[PATCH] wget.py: use a longer timeout in checkstatus()
Alexander Kanavin
The addition of 30 second timeout is recent [1], and has
proved not long enough with the AB server when mass-checking for sstate item availability, resulting in timeout errors with extensible SDKs[2]. [1] https://git.yoctoproject.org/poky/commit/?id=2c46245f449d2716566ef668da0bf48f2109643a [2] https://autobuilder.yoctoproject.org/typhoon/#/builders/53/builds/4710/steps/16/logs/stdio Signed-off-by: Alexander Kanavin <alex@...> --- bitbake/lib/bb/fetch2/wget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index 253cabce75..2a7592ae5f 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/lib/bb/fetch2/wget.py @@ -366,7 +366,7 @@ class Wget(FetchMethod): except (TypeError, ImportError, IOError, netrc.NetrcParseError): pass - with opener.open(r, timeout=30) as response: + with opener.open(r, timeout=300) as response: pass except urllib.error.URLError as e: if try_again: -- 2.20.1 |
|