]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
hs-v2: Demote log warning to info when we don't have a consensus
authorDavid Goulet <dgoulet@torproject.org>
Fri, 14 Sep 2018 16:04:01 +0000 (12:04 -0400)
committerDavid Goulet <dgoulet@torproject.org>
Fri, 14 Sep 2018 16:04:01 +0000 (12:04 -0400)
Fixes #27040

Signed-off-by: David Goulet <dgoulet@torproject.org>
changes/ticket27040 [new file with mode: 0644]
src/feature/rend/rendcommon.c

diff --git a/changes/ticket27040 b/changes/ticket27040
new file mode 100644 (file)
index 0000000..160556a
--- /dev/null
@@ -0,0 +1,5 @@
+  o Minor bugfixes (hidden service v2):
+    - Demote a log warning to info in case we do not have a consensus when a
+      .onion request comes in. This can happen while bootstrapping for
+      instance. The request will follow through after so we really don't need
+      to warn the user loudly. Fixes bug 27040; bugfix on 0.2.8.2-alpha.
index 8cb5fd91e6e2f74dc14c40be328731ec5dcbb1ce..b48ba87cbc59302c625cb4ab7600a103f4c7d838 100644 (file)
@@ -843,7 +843,7 @@ hid_serv_get_responsible_directories(smartlist_t *responsible_dirs,
   int start, found, n_added = 0, i;
   networkstatus_t *c = networkstatus_get_latest_consensus();
   if (!c || !smartlist_len(c->routerstatus_list)) {
-    log_warn(LD_REND, "We don't have a consensus, so we can't perform v2 "
+    log_info(LD_REND, "We don't have a consensus, so we can't perform v2 "
              "rendezvous operations.");
     return -1;
   }