From: meejah <meejah@meejah.ca>
Date: Tue, 6 Oct 2015 20:11:32 +0000 (-0600)
Subject: Fix call to ready()
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/flags/index.php?a=commitdiff_plain;h=c398218c55d099523b6c069b1a17ac70a124644e;p=tahoe-lafs%2Ftahoe-lafs.git

Fix call to ready()
---

diff --git a/src/allmydata/client.py b/src/allmydata/client.py
index 63b87288..ef158407 100644
--- a/src/allmydata/client.py
+++ b/src/allmydata/client.py
@@ -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):