diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-12-11 16:51:54 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-12-11 16:51:54 -0500 |
commit | 7e486dd6f7f845c14471b406d6bc7dfa4f593b12 (patch) | |
tree | 54f7252b65adc3c5010f96885885c1e5bc94c650 /src | |
parent | 953a8f851081e6157e9296186c296ab10106b7eb (diff) | |
parent | 0dc55fb24756c5ae80e71f6fce93d97d73efd2fc (diff) | |
download | tor-7e486dd6f7f845c14471b406d6bc7dfa4f593b12.tar.gz tor-7e486dd6f7f845c14471b406d6bc7dfa4f593b12.zip |
Merge remote-tracking branch 'public/bug23985_029' into maint-0.2.9
Diffstat (limited to 'src')
-rw-r--r-- | src/or/routerlist.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 61b350cd38..1ad03b6cda 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -5038,6 +5038,11 @@ launch_descriptor_downloads(int purpose, log_debug(LD_DIR, "There are enough downloadable %ss to launch requests.", descname); + } else if (! router_have_minimum_dir_info()) { + log_debug(LD_DIR, + "We are only missing %d %ss, but we'll fetch anyway, since " + "we don't yet have enough directory info.", + n_downloadable, descname); } else { /* should delay */ |