mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-23 22:47:12 +01:00
Remove useless message about nonexistent onion services after uploading a descriptor
This commit is contained in:
parent
f038e9cb00
commit
b432efb838
2 changed files with 6 additions and 2 deletions
6
changes/bug19464
Normal file
6
changes/bug19464
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
o Minor bugfixes (user interface):
|
||||||
|
- Remove a warning message "Service [scrubbed] not found after
|
||||||
|
descriptor upload". This message appears when one uses HSPOST control
|
||||||
|
command to upload a service descriptor. Since there is only a descriptor
|
||||||
|
and no service, showing this message is pointless and confusing.
|
||||||
|
Fixes bug 19464; bugfix on 0.2.7.2-alpha.
|
|
@ -3465,8 +3465,6 @@ rend_service_desc_has_uploaded(const rend_data_t *rend_data)
|
||||||
|
|
||||||
service = rend_service_get_by_service_id(rend_data->onion_address);
|
service = rend_service_get_by_service_id(rend_data->onion_address);
|
||||||
if (service == NULL) {
|
if (service == NULL) {
|
||||||
log_warn(LD_REND, "Service %s not found after descriptor upload",
|
|
||||||
safe_str_client(rend_data->onion_address));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue