]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Fix call to ready()
authormeejah <meejah@meejah.ca>
Tue, 6 Oct 2015 20:11:32 +0000 (14:11 -0600)
committerDaira Hopwood <daira@jacaranda.org>
Mon, 28 Dec 2015 16:18:52 +0000 (16:18 +0000)
src/allmydata/client.py

index f86c6fc2fc983e028dfcb46f319435977faa6638..7013a4f2d17698c9af89f94a002894d1fa91a950 100644 (file)
@@ -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):