]> 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)
committerYour Name <you@example.com>
Wed, 7 Oct 2015 13:48:47 +0000 (15:48 +0200)
src/allmydata/client.py

index 63b87288cc4a107b031c070329f696a6651a7e19..ef15840763dc72168fcb79c7f8466d658e4296dd 100644 (file)
@@ -517,7 +517,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):