From: Daira Hopwood Date: Thu, 3 Sep 2015 18:41:51 +0000 (+0100) Subject: stopService does not necessarily return a Deferred. X-Git-Url: https://git.rkrishnan.org/provisioning?a=commitdiff_plain;h=707ce7772de763297fe89be70f81f105e200dee7;p=tahoe-lafs%2Ftahoe-lafs.git stopService does not necessarily return a Deferred. Signed-off-by: Daira Hopwood --- diff --git a/src/allmydata/test/no_network.py b/src/allmydata/test/no_network.py index b84a7a2e..f5578ac3 100644 --- a/src/allmydata/test/no_network.py +++ b/src/allmydata/test/no_network.py @@ -385,7 +385,8 @@ class GridTestMixin: def restart_client(self, i=0): client = self.g.clients[i] - d = client.stopService() + d = defer.succeed(None) + d.addCallback(lambda ign: client.stopService()) def _make_client(ign): c = self.g.make_client(i, write_config=False) self.g.clients[i] = c