aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/authproxy.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-04-11 11:53:16 -0400
committerMarcoFalke <falke.marco@gmail.com>2020-04-12 08:50:41 -0400
commitfaa655731eac751d4eb494268e2c815493ba9382 (patch)
tree0d2204dde54720eb8a5181d02668b97aa9231321 /test/functional/test_framework/authproxy.py
parentfa9f4f663c36b0824406036445e5cff0a78174e9 (diff)
downloadbitcoin-faa655731eac751d4eb494268e2c815493ba9382.tar.xz
test: Document why connection is re-constructed on windows
Diffstat (limited to 'test/functional/test_framework/authproxy.py')
-rw-r--r--test/functional/test_framework/authproxy.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_framework/authproxy.py b/test/functional/test_framework/authproxy.py
index c7837d3f6f..3a2c59ee5e 100644
--- a/test/functional/test_framework/authproxy.py
+++ b/test/functional/test_framework/authproxy.py
@@ -101,6 +101,7 @@ class AuthServiceProxy():
if os.name == 'nt':
# Windows somehow does not like to re-use connections
# TODO: Find out why the connection would disconnect occasionally and make it reusable on Windows
+ # Avoid "ConnectionAbortedError: [WinError 10053] An established connection was aborted by the software in your host machine"
self._set_conn()
try:
self.__conn.request(method, path, postdata, headers)