diff options
author | teor <teor@torproject.org> | 2019-09-06 16:23:58 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-09-06 16:43:14 +1000 |
commit | 670d4026219534558c809c48ba36b905d18ce35f (patch) | |
tree | 9744b4ac74d74a3b58a5d47a072c67f9635f83ed /src/feature/client | |
parent | 04618371497bd5040d3af3e6fd782c361a7ba3a5 (diff) | |
download | tor-670d4026219534558c809c48ba36b905d18ce35f.tar.gz tor-670d4026219534558c809c48ba36b905d18ce35f.zip |
entrynodes: Make routine descriptor expiry notice logs less alarming
When tor is missing descriptors for some primary entry guards, make the
log message less alarming. It's normal for descriptors to expire, as long
as tor fetches new ones soon after.
Fixes bug 31657; bugfix on 0.3.3.1-alpha.
Diffstat (limited to 'src/feature/client')
-rw-r--r-- | src/feature/client/entrynodes.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/feature/client/entrynodes.c b/src/feature/client/entrynodes.c index 819f90a6d9..1bfb62538e 100644 --- a/src/feature/client/entrynodes.c +++ b/src/feature/client/entrynodes.c @@ -3765,7 +3765,8 @@ guard_selection_get_err_str_if_dir_info_missing(guard_selection_t *gs, /* otherwise return a helpful error string */ tor_asprintf(&ret_str, "We're missing descriptors for %d/%d of our " - "primary entry guards (total %sdescriptors: %d/%d).", + "primary entry guards (total %sdescriptors: %d/%d). " + "That's ok. We will try to fetch missing descriptors soon.", n_missing_descriptors, num_primary_to_check, using_mds?"micro":"", num_present, num_usable); |