mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 11:32:46 +01:00
merge bitcoin#23092: Remove Windows workaround in authproxy (WinError 10053)
This commit is contained in:
parent
e2095bd68a
commit
f3b065cd9c
@ -116,10 +116,8 @@ class AuthServiceProxy():
|
|||||||
self.__conn.request(method, path, postdata, headers)
|
self.__conn.request(method, path, postdata, headers)
|
||||||
return self._get_response()
|
return self._get_response()
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
retry = (
|
|
||||||
'[WinError 10053] An established connection was aborted by the software in your host machine' in str(e))
|
|
||||||
# Workaround for a bug on macOS. See https://bugs.python.org/issue33450
|
# Workaround for a bug on macOS. See https://bugs.python.org/issue33450
|
||||||
retry = retry or ('[Errno 41] Protocol wrong type for socket' in str(e))
|
retry = '[Errno 41] Protocol wrong type for socket' in str(e)
|
||||||
if retry:
|
if retry:
|
||||||
self.__conn.close()
|
self.__conn.close()
|
||||||
self.__conn.request(method, path, postdata, headers)
|
self.__conn.request(method, path, postdata, headers)
|
||||||
|
Loading…
Reference in New Issue
Block a user