mirror of https://github.com/python/cpython
bpo-31234: Fix dangling thread in test_ftplib (#3544)
Clear also self.server_thread attribute in TestTimeouts.tearDown().
This commit is contained in:
parent
d165e14e29
commit
b157ce1e58
|
@ -988,6 +988,8 @@ class TestTimeouts(TestCase):
|
|||
def tearDown(self):
|
||||
ftplib.FTP.port = self.old_port
|
||||
self.server_thread.join()
|
||||
# Explicitly clear the attribute to prevent dangling thread
|
||||
self.server_thread = None
|
||||
|
||||
def server(self):
|
||||
# This method sets the evt 3 times:
|
||||
|
|
Loading…
Reference in New Issue