diff --git a/src/allmydata/immutable/downloader/share.py b/src/allmydata/immutable/downloader/share.py
index 2cb54de..f7ed4e8 100644
|
a
|
b
|
class Share: |
| 185 | 185 | return None, [] |
| 186 | 186 | |
| 187 | 187 | def loop(self): |
| | 188 | if not self._alive: |
| | 189 | return |
| 188 | 190 | try: |
| 189 | 191 | # if any exceptions occur here, kill the download |
| 190 | 192 | log.msg("%s.loop, reqs=[%s], pending=%s, received=%s," |
| … |
… |
class Share: |
| 238 | 240 | # new segments added to self._requested_blocks |
| 239 | 241 | # new data received from servers (responses to our read() calls) |
| 240 | 242 | # impatience timer fires (server appears slow) |
| 241 | | if not self._alive: |
| 242 | | return |
| 243 | 243 | |
| 244 | 244 | # First, consume all of the information that we currently have, for |
| 245 | 245 | # all the segments people currently want. |