Merge #8139: Fix interrupted HTTP RPC connection workaround for Python 3.5+

f45f51e Fix interrupted HTTP RPC connection workaround for Python 3.5+ (Pieter Wuille)
This commit is contained in:
MarcoFalke 2016-06-03 08:52:45 +02:00
commit ae5575ba41
No known key found for this signature in database
GPG key ID: 2D7F2372E50FE137

View file

@ -124,6 +124,11 @@ class AuthServiceProxy(object):
return self._get_response()
else:
raise
except BrokenPipeError:
# Python 3.5+ raises this instead of BadStatusLine when the connection was reset
self.__conn.close()
self.__conn.request(method, path, postdata, headers)
return self._get_response()
def __call__(self, *args):
AuthServiceProxy.__id_count += 1