mirror of
https://github.com/python/cpython.git
synced 2024-11-23 18:04:37 +08:00
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
Block a user