mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-19 01:10:28 +00:00
Fix call to ready()
This commit is contained in:
parent
0b5039d253
commit
c398218c55
@ -517,7 +517,7 @@ class Client(node.Node, pollmixin.PollMixin):
|
|||||||
s.startService()
|
s.startService()
|
||||||
|
|
||||||
# start processing the upload queue when we've connected to enough servers
|
# start processing the upload queue when we've connected to enough servers
|
||||||
self.connected_enough_d.addCallback(s.ready)
|
self.connected_enough_d.addCallback(lambda ign: s.ready())
|
||||||
|
|
||||||
def _check_exit_trigger(self, exit_trigger_file):
|
def _check_exit_trigger(self, exit_trigger_file):
|
||||||
if os.path.exists(exit_trigger_file):
|
if os.path.exists(exit_trigger_file):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user