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.
This commit is contained in:
Pablo Galindo 2019-02-09 17:08:49 +00:00 committed by GitHub
parent 8a03ff2ff4
commit 613f729e5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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):