
commit 10193a86c3d39795fa1541f8990e8e0d62820e19 Author: Damian Johnson <atagar@torproject.org> Date: Sun Aug 28 12:15:48 2016 -0700 Disable notice that Tonga is a authority Oops, tried to disable notices to Tonga but inadvertantly caused... NOTICE: The following authorities were not expected in the consensus: Tonga Disabling this part of the check until Tonga's gone. --- consensus_health_checker.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/consensus_health_checker.py b/consensus_health_checker.py index a2859e9..7d7a354 100755 --- a/consensus_health_checker.py +++ b/consensus_health_checker.py @@ -603,8 +603,10 @@ 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)) - if extra_authorities: - issues.append(Issue(Runlevel.NOTICE, 'EXTRA_AUTHORITIES', authorities = ', '.join(extra_authorities), to = extra_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)) return issues