mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 06:13:31 +01:00
Reduce log level for bug case that we now know really exists.
This commit is contained in:
parent
dd8f16beb5
commit
da219ee924
@ -94,10 +94,14 @@ rend_client_send_introduction(origin_circuit_t *introcirc,
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (!intro_key) {
|
if (!intro_key) {
|
||||||
|
/** XXX This case probably means that the intro point vanished while
|
||||||
|
* we were building a circuit to it. In the future, we should find
|
||||||
|
* out how that happened and whether we should kill the circuits to
|
||||||
|
* removed intro points immediately. See task 1073. */
|
||||||
int num_intro_points = smartlist_len(entry->parsed->intro_nodes);
|
int num_intro_points = smartlist_len(entry->parsed->intro_nodes);
|
||||||
if (rend_cache_lookup_entry(introcirc->rend_data->onion_address,
|
if (rend_cache_lookup_entry(introcirc->rend_data->onion_address,
|
||||||
0, &entry) > 0) {
|
0, &entry) > 0) {
|
||||||
log_warn(LD_BUG, "We have both a v0 and a v2 rend desc for this "
|
log_info(LD_REND, "We have both a v0 and a v2 rend desc for this "
|
||||||
"service. The v2 desc doesn't contain the introduction "
|
"service. The v2 desc doesn't contain the introduction "
|
||||||
"point (and key) to send an INTRODUCE1/2 cell to this "
|
"point (and key) to send an INTRODUCE1/2 cell to this "
|
||||||
"introduction point. Assuming the introduction point "
|
"introduction point. Assuming the introduction point "
|
||||||
@ -108,7 +112,7 @@ rend_client_send_introduction(origin_circuit_t *introcirc,
|
|||||||
/* See flyspray task 1024. */
|
/* See flyspray task 1024. */
|
||||||
intro_key = entry->parsed->pk;
|
intro_key = entry->parsed->pk;
|
||||||
} else {
|
} else {
|
||||||
log_warn(LD_BUG, "Internal error: could not find intro key; we "
|
log_info(LD_REND, "Internal error: could not find intro key; we "
|
||||||
"only have a v2 rend desc with %d intro points.",
|
"only have a v2 rend desc with %d intro points.",
|
||||||
num_intro_points);
|
num_intro_points);
|
||||||
goto err;
|
goto err;
|
||||||
|
Loading…
Reference in New Issue
Block a user