mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Merge remote-tracking branch 'origin/maint-0.2.2'
This commit is contained in:
commit
64523609c9
5
changes/bug5067
Normal file
5
changes/bug5067
Normal file
@ -0,0 +1,5 @@
|
||||
o Minor bugfixes (usability):
|
||||
- Downgrade the "We're missing a certificate" message from notice
|
||||
to info: people kept mistaking it for a real problem, whereas it
|
||||
is only a problem when we are failing to bootstrap. Fixes bug
|
||||
5067; bugfix on 0.2.10-alpha.
|
@ -510,9 +510,9 @@ authority_certs_fetch_missing(networkstatus_t *status, time_t now)
|
||||
if (download_status_is_ready(&cl->dl_status, now,
|
||||
MAX_CERT_DL_FAILURES) &&
|
||||
!digestmap_get(pending, voter->identity_digest)) {
|
||||
log_notice(LD_DIR, "We're missing a certificate from authority "
|
||||
"with signing key %s: launching request.",
|
||||
hex_str(sig->signing_key_digest, DIGEST_LEN));
|
||||
log_info(LD_DIR, "We're missing a certificate from authority "
|
||||
"with signing key %s: launching request.",
|
||||
hex_str(sig->signing_key_digest, DIGEST_LEN));
|
||||
smartlist_add(missing_digests, sig->identity_digest);
|
||||
}
|
||||
} SMARTLIST_FOREACH_END(sig);
|
||||
|
Loading…
Reference in New Issue
Block a user