Skip to content

Commit faa6557

Browse files
author
MarcoFalke
committed
test: Document why connection is re-constructed on windows
1 parent fa9f4f6 commit faa6557

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/functional/test_framework/authproxy.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def _request(self, method, path, postdata):
101101
if os.name == 'nt':
102102
# Windows somehow does not like to re-use connections
103103
# TODO: Find out why the connection would disconnect occasionally and make it reusable on Windows
104+
# Avoid "ConnectionAbortedError: [WinError 10053] An established connection was aborted by the software in your host machine"
104105
self._set_conn()
105106
try:
106107
self.__conn.request(method, path, postdata, headers)

0 commit comments

Comments
 (0)