mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
gh-128002: fix tsan race in closing socket in test_sslproto
(#131399)
This commit is contained in:
parent
812074e291
commit
ab6333f7f5
1 changed files with 6 additions and 7 deletions
|
@ -217,16 +217,15 @@ class TestThreadedServer(SocketThread):
|
|||
pass
|
||||
finally:
|
||||
super().stop()
|
||||
|
||||
def run(self):
|
||||
try:
|
||||
with self._sock:
|
||||
self._sock.setblocking(False)
|
||||
self._run()
|
||||
finally:
|
||||
self._sock.close()
|
||||
self._s1.close()
|
||||
self._s2.close()
|
||||
|
||||
|
||||
def run(self):
|
||||
self._sock.setblocking(False)
|
||||
self._run()
|
||||
|
||||
def _run(self):
|
||||
while self._active:
|
||||
if self._clients >= self._max_clients:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue