diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-11-06 20:14:34 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-11-07 09:19:35 -0500 |
commit | 858867a31a31b7a0065481b1f5ad108f02ab337a (patch) | |
tree | d0df5827144b3e4cb6213144514b4bd76ae63d4c /changes | |
parent | 5385a023e105ffbb54f1c160298313c6a8cde57f (diff) | |
download | tor-858867a31a31b7a0065481b1f5ad108f02ab337a.tar.gz tor-858867a31a31b7a0065481b1f5ad108f02ab337a.zip |
Allow infinitely long delays in exponential-backoff downloads
It's only safe to remove the failure limit (per 20536) if we are in
fact waiting a bit longer each time we try to download.
Fixes bug 20534; bugfix on 0.2.9.1-alpha.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug20534 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/changes/bug20534 b/changes/bug20534 new file mode 100644 index 0000000000..1ffa1f32e9 --- /dev/null +++ b/changes/bug20534 @@ -0,0 +1,6 @@ + o Minor bugfixes (directory download scheduling): + - Remove the maximum delay on exponential-backoff scheduling. + Since we now allow an infinite number of failures (see ticket + 20536), we must now allow the time to grow longer on each failure. + Fixes bug 20534; bugfix on 0.2.9.1-alpha. + |