Browse Source

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)
0.13
MarcoFalke 8 years ago
parent
commit
ae5575ba41
No known key found for this signature in database
GPG Key ID: 2D7F2372E50FE137
  1. 5
      qa/rpc-tests/test_framework/authproxy.py

5
qa/rpc-tests/test_framework/authproxy.py

@ -124,6 +124,11 @@ class AuthServiceProxy(object):
return self._get_response() return self._get_response()
else: else:
raise 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): def __call__(self, *args):
AuthServiceProxy.__id_count += 1 AuthServiceProxy.__id_count += 1

Loading…
Cancel
Save