mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-24 15:16:41 +00:00
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:
parent
baa0a46cd4
commit
2b475777d9
@ -231,7 +231,7 @@ class _NoNetworkClient(_Client):
|
|||||||
def startService(self):
|
def startService(self):
|
||||||
service.MultiService.startService(self)
|
service.MultiService.startService(self)
|
||||||
def stopService(self):
|
def stopService(self):
|
||||||
service.MultiService.stopService(self)
|
return service.MultiService.stopService(self)
|
||||||
def init_control(self):
|
def init_control(self):
|
||||||
pass
|
pass
|
||||||
def init_helper(self):
|
def init_helper(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user