summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/getbinpkg.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/pym/getbinpkg.py b/pym/getbinpkg.py
index 861e98dd8..0f2cd501b 100644
--- a/pym/getbinpkg.py
+++ b/pym/getbinpkg.py
@@ -620,6 +620,14 @@ def dir_get_metadata(baseurl, conn=None, chunk_size=3000, verbose=1, usingcache=
# connection before sending a valid response".
conn, protocol, address, params, headers = create_conn(
baseurl)
+ except httplib.ResponseNotReady:
+ # With some http servers this error is known to be thrown
+ # from conn.getresponse() in make_http_request() when the
+ # remote file does not have appropriate read permissions.
+ # Maybe it's possible to recover from this exception in
+ # cases though, so retry.
+ conn, protocol, address, params, headers = create_conn(
+ baseurl)
if myid and myid[0]:
metadata[baseurl]["data"][x] = make_metadata_dict(myid)