projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b5039d
)
Fix call to ready()
193/head
author
meejah
<meejah@meejah.ca>
Tue, 6 Oct 2015 20:11:32 +0000
(14:11 -0600)
committer
meejah
<meejah@meejah.ca>
Tue, 6 Oct 2015 20:11:32 +0000
(14:11 -0600)
src/allmydata/client.py
patch
|
blob
|
history
diff --git
a/src/allmydata/client.py
b/src/allmydata/client.py
index 63b87288cc4a107b031c070329f696a6651a7e19..ef15840763dc72168fcb79c7f8466d658e4296dd 100644
(file)
--- 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):