From: meejah Date: Tue, 6 Oct 2015 20:11:32 +0000 (-0600) Subject: Fix call to ready() X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=9e9c8f5a1aa01feb68de7c278e8027dd18599cdf;p=tahoe-lafs%2Ftahoe-lafs.git Fix call to ready() --- diff --git a/src/allmydata/client.py b/src/allmydata/client.py index f86c6fc2..7013a4f2 100644 --- a/src/allmydata/client.py +++ b/src/allmydata/client.py @@ -519,7 +519,7 @@ class Client(node.Node, pollmixin.PollMixin): s.startService() # 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): if os.path.exists(exit_trigger_file):