Commit 17657bb9 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-31069, test_multiprocessing: Fix dangling process (#3103)

Fix a warning about dangling processes in test_rapid_restart() of
_test_multiprocessing: join the process.
parent 7cc33998
...@@ -2596,12 +2596,13 @@ class _TestManagerRestart(BaseTestCase): ...@@ -2596,12 +2596,13 @@ class _TestManagerRestart(BaseTestCase):
manager.start() manager.start()
p = self.Process(target=self._putter, args=(manager.address, authkey)) p = self.Process(target=self._putter, args=(manager.address, authkey))
p.daemon = True
p.start() p.start()
p.join()
queue = manager.get_queue() queue = manager.get_queue()
self.assertEqual(queue.get(), 'hello world') self.assertEqual(queue.get(), 'hello world')
del queue del queue
manager.shutdown() manager.shutdown()
manager = QueueManager( manager = QueueManager(
address=addr, authkey=authkey, serializer=SERIALIZER) address=addr, authkey=authkey, serializer=SERIALIZER)
try: try:
......
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