summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2007-11-16 07:23:25 +0000
committerRoger Dingledine <arma@torproject.org>2007-11-16 07:23:25 +0000
commit0e442e098ca1eaabe0d60aa34e95a8c97fa2f5f2 (patch)
treee2a4e04c7ff4790a4d51d70b38b081ded1f081b6
parent60ee26c87379b9c7989672d111421d384c953c59 (diff)
downloadtor-0e442e098ca1eaabe0d60aa34e95a8c97fa2f5f2.tar.gz
tor-0e442e098ca1eaabe0d60aa34e95a8c97fa2f5f2.zip
Nov 16 02:20:50.089 [info] update_consensus_router_descriptor_downloads(): 0 router descriptors downloadable. 0 delayed; 1676 present (0 of those were in old_routers); 0 would_reject; 582 wouldnt_use, 0 in progress.
Nov 16 02:20:50.089 [info] launch_router_descriptor_downloads(): There are not many downloadable routerdescs, but we haven't tried downloading descriptors recently. Downloading. Get rid of the second line. svn:r12510
-rw-r--r--src/or/routerlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 0854e01ab7..eeb4909649 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -3565,7 +3565,7 @@ launch_router_descriptor_downloads(smartlist_t *downloadable, time_t now)
} else {
should_delay = (last_routerdesc_download_attempted +
MAX_CLIENT_INTERVAL_WITHOUT_REQUEST) > now;
- if (!should_delay) {
+ if (!should_delay && n_downloadable) {
if (last_routerdesc_download_attempted) {
log_info(LD_DIR,
"There are not many downloadable routerdescs, but we've "