mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
offloaded.py: don't drop the Deferred
There was one corner case (where the client disconnects at just the wrong time) that could have dropped a Deferred, leading to an Unhandled Error. Clean up the control flow to avoid this case.
This commit is contained in:
parent
b82cddef7b
commit
a809e4caba
@ -325,14 +325,12 @@ class CHKCiphertextFetcher(AskUntilSuccessMixin):
|
||||
# else.
|
||||
have = os.stat(self._encoding_file)[stat.ST_SIZE]
|
||||
d = self.call("read_encrypted", have-1, 1)
|
||||
d.addCallback(self._done2, started)
|
||||
return
|
||||
|
||||
# first, find out how large the file is going to be
|
||||
d = self.call("get_size")
|
||||
d.addCallback(self._got_size)
|
||||
d.addCallback(self._start_reading)
|
||||
d.addCallback(self._done)
|
||||
else:
|
||||
# first, find out how large the file is going to be
|
||||
d = self.call("get_size")
|
||||
d.addCallback(self._got_size)
|
||||
d.addCallback(self._start_reading)
|
||||
d.addCallback(self._done)
|
||||
d.addCallback(self._done2, started)
|
||||
d.addErrback(self._failed)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user