Skip to content
Snippets Groups Projects
Commit 487e77d5 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

You have to wait() on a Popen to reap the child.

parent b0a06ba9
1 merge request!309Add a Tahoe-LAFS replica snapshot downloader
...@@ -188,6 +188,7 @@ class TahoeStorageManager(TestResourceManager): ...@@ -188,6 +188,7 @@ class TahoeStorageManager(TestResourceManager):
Kill the storage node child process. Kill the storage node child process.
""" """
storage.process.kill() storage.process.kill()
storage.process.wait()
def make(self, dependency_resources): def make(self, dependency_resources):
""" """
...@@ -289,6 +290,7 @@ class TahoeClientManager(TestResourceManager): ...@@ -289,6 +290,7 @@ class TahoeClientManager(TestResourceManager):
Kill the client node child process. Kill the client node child process.
""" """
client.process.kill() client.process.kill()
client.process.wait()
def make(self, dependency_resources): def make(self, dependency_resources):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment