summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/wget.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/wget.py')
-rw-r--r--bitbake/lib/bb/fetch2/wget.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py
index ae0ffa8c97..208ee9bdd6 100644
--- a/bitbake/lib/bb/fetch2/wget.py
+++ b/bitbake/lib/bb/fetch2/wget.py
@@ -30,6 +30,7 @@ import tempfile
30import subprocess 30import subprocess
31import os 31import os
32import logging 32import logging
33import errno
33import bb 34import bb
34import bb.progress 35import bb.progress
35import urllib.request, urllib.parse, urllib.error 36import urllib.request, urllib.parse, urllib.error
@@ -206,8 +207,21 @@ class Wget(FetchMethod):
206 h.request(req.get_method(), req.selector, req.data, headers) 207 h.request(req.get_method(), req.selector, req.data, headers)
207 except socket.error as err: # XXX what error? 208 except socket.error as err: # XXX what error?
208 # Don't close connection when cache is enabled. 209 # Don't close connection when cache is enabled.
210 # Instead, try to detect connections that are no longer
211 # usable (for example, closed unexpectedly) and remove
212 # them from the cache.
209 if fetch.connection_cache is None: 213 if fetch.connection_cache is None:
210 h.close() 214 h.close()
215 elif isinstance(err, OSError) and err.errno == errno.EBADF:
216 # This happens when the server closes the connection despite the Keep-Alive.
217 # Apparently urllib then uses the file descriptor, expecting it to be
218 # connected, when in reality the connection is already gone.
219 # We let the request fail and expect it to be
220 # tried once more ("try_again" in check_status()),
221 # with the dead connection removed from the cache.
222 # If it still fails, we give up, which can happend for bad
223 # HTTP proxy settings.
224 fetch.connection_cache.remove_connection(h.host, h.port)
211 raise urllib.error.URLError(err) 225 raise urllib.error.URLError(err)
212 else: 226 else:
213 try: 227 try: