Return the result of the base stopService

It is a Deferred that indicates when things have actually stopped.  Failing to
return it means callers will think everything stopped synchronously.  This is
certainly not the case.
This commit is contained in:
Jean-Paul Calderone 2019-01-30 12:22:26 -05:00
parent baa0a46cd4
commit 2b475777d9

View File

@ -231,7 +231,7 @@ class _NoNetworkClient(_Client):
def startService(self):
service.MultiService.startService(self)
def stopService(self):
service.MultiService.stopService(self)
return service.MultiService.stopService(self)
def init_control(self):
pass
def init_helper(self):