mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
Silence a warning about failed descriptor uploads.
Due to #23662 this can happen under natural causes and does not disturb the functionality of the service. This is a simple 0.3.2 fix for now, and we plan to fix this properly in 0.3.3.
This commit is contained in:
parent
6059784be0
commit
c4a56ed5c2
2 changed files with 9 additions and 4 deletions
4
changes/bug23662
Normal file
4
changes/bug23662
Normal file
|
@ -0,0 +1,4 @@
|
|||
o Minor bugfixes (onion services):
|
||||
- Silence a warning about failed v3 onion descriptor uploads since it can
|
||||
happen naturally under certain edge-cases. Fixes part of bug 23662;
|
||||
bugfix on 0.3.2.1-alpha.
|
|
@ -3339,7 +3339,8 @@ handle_response_upload_hsdesc(dir_connection_t *conn,
|
|||
/* XXX: Trigger control event. */
|
||||
break;
|
||||
case 400:
|
||||
log_warn(LD_REND, "Uploading hidden service descriptor: http "
|
||||
log_fn(LOG_PROTOCOL_WARN, LD_REND,
|
||||
"Uploading hidden service descriptor: http "
|
||||
"status 400 (%s) response from dirserver "
|
||||
"'%s:%d'. Malformed hidden service descriptor?",
|
||||
escaped(reason), conn->base_.address, conn->base_.port);
|
||||
|
|
Loading…
Add table
Reference in a new issue