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.
(cherry picked from commit 613f729e5d)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-02-09 09:26:16 -08:00 committed by GitHub
parent 3fcfef357e
commit 36ed5b3c4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4610,6 +4610,8 @@ def tearDown(self):
self.proc.terminate()
self.proc.join()
self.manager.shutdown()
self.manager = None
self.proc = None
@classmethod
def setUpClass(cls):