Commit 613f729e authored by Pablo Galindo's avatar Pablo Galindo Committed by GitHub

Do not retain references to processes and managers in TestSyncManagerTypes (GH-11801)

Keeping references to processes and managers between tests makes them count as dangling processes.
parent 8a03ff2f
......@@ -4740,6 +4740,8 @@ class TestSyncManagerTypes(unittest.TestCase):
self.proc.terminate()
self.proc.join()
self.manager.shutdown()
self.manager = None
self.proc = None
@classmethod
def setUpClass(cls):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment