Raise timeout limit. Fix #5892.

This commit is contained in:
Julien Pivotto 2011-03-23 14:22:31 +01:00
parent 5cfa5bf221
commit 04cdf1bc2e
1 changed files with 2 additions and 2 deletions

View File

@ -488,7 +488,7 @@ class HtmlHandler(xml.sax.handler.ContentHandler):
def _get_img(self, attrs):
mem, alt = '', ''
# Wait maximum 1s for connection
socket.setdefaulttimeout(1)
socket.setdefaulttimeout(5)
try:
req = urllib2.Request(attrs['src'])
req.add_header('User-Agent', 'Gajim ' + gajim.version)
@ -498,7 +498,7 @@ class HtmlHandler(xml.sax.handler.ContentHandler):
pixbuf = None
alt = attrs.get('alt', 'Broken image')
else:
# Wait 0.1s between each byte
# Wait 0.5s between each byte
try:
f.fp._sock.fp._sock.settimeout(0.5)
except Exception: