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:
711ad29
)
Fix call to ready()
author
meejah
<meejah@meejah.ca>
Tue, 6 Oct 2015 20:11:32 +0000
(14:11 -0600)
committer
meejah
<meejah@meejah.ca>
Tue, 19 Jan 2016 22:48:36 +0000
(15:48 -0700)
src/allmydata/client.py
patch
|
blob
|
history
diff --git
a/src/allmydata/client.py
b/src/allmydata/client.py
index f86c6fc2fc983e028dfcb46f319435977faa6638..7013a4f2d17698c9af89f94a002894d1fa91a950 100644
(file)
--- a/
src/allmydata/client.py
+++ b/
src/allmydata/client.py
@@
-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):