diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-01-25 15:51:13 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-01-25 15:51:13 -0500 |
commit | e0049ef022b8bf9b808a9074820bb2a33f92ac1b (patch) | |
tree | 762121646ca7ab4dc3d88848c3d32fd958f351f7 /src/or/routerlist.c | |
parent | 7a74b3663fdaa40fc84e48990d15953a8f46a2bf (diff) | |
download | tor-e0049ef022b8bf9b808a9074820bb2a33f92ac1b.tar.gz tor-e0049ef022b8bf9b808a9074820bb2a33f92ac1b.zip |
Remove the old ("deterministic") download schedule.
We haven't meant to use it since we introduced the random
exponential schedule.
Closes ticket 23814.
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 2815c60963..fec224fad6 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -246,7 +246,6 @@ download_status_cert_init(download_status_t *dlstatus) dlstatus->schedule = DL_SCHED_CONSENSUS; dlstatus->want_authority = DL_WANT_ANY_DIRSERVER; dlstatus->increment_on = DL_SCHED_INCREMENT_FAILURE; - dlstatus->backoff = DL_SCHED_RANDOM_EXPONENTIAL; dlstatus->last_backoff_position = 0; dlstatus->last_delay_used = 0; |