From 7d5aa5dae6c7875b8cf01d38fae47794cd8b8e38 Mon Sep 17 00:00:00 2001 From: meejah Date: Tue, 6 Oct 2015 14:11:32 -0600 Subject: [PATCH] Fix call to ready() --- src/allmydata/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.45.2