[tor-commits] [doctor/master] Resume check for unexpected authority flags

atagar at torproject.org atagar at torproject.org
Thu Sep 8 17:35:48 UTC 2016


commit a75aabbd232885b9032aca5818d96ba52a127728
Author: Damian Johnson <atagar at torproject.org>
Date:   Thu Sep 8 10:34:22 2016 -0700

    Resume check for unexpected authority flags
    
    Reverting commit 10193a8 now that Tonga has been fully replaced by Bifroest.
---
 consensus_health_checker.py | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/consensus_health_checker.py b/consensus_health_checker.py
index 7d7a354..a2859e9 100755
--- a/consensus_health_checker.py
+++ b/consensus_health_checker.py
@@ -603,10 +603,8 @@ def has_authority_flag(latest_consensus, consensuses, votes):
   if missing_authorities:
     issues.append(Issue(Runlevel.WARNING, 'MISSING_AUTHORITIES', authorities = ', '.join(missing_authorities), to = missing_authorities))
 
-  # TODO: Re-enable when Tonga is gone.
-
-  #if extra_authorities:
-  #  issues.append(Issue(Runlevel.NOTICE, 'EXTRA_AUTHORITIES', authorities = ', '.join(extra_authorities), to = extra_authorities))
+  if extra_authorities:
+    issues.append(Issue(Runlevel.NOTICE, 'EXTRA_AUTHORITIES', authorities = ', '.join(extra_authorities), to = extra_authorities))
 
   return issues
 



More information about the tor-commits mailing list