[doctor/master] Disable bwauth notices for gabelmoo

commit 90f6fde1c89c11623e65cd49a5e0f640e0ff2725 Author: Damian Johnson <atagar@torproject.org> Date: Sun Aug 27 16:23:51 2017 -0700 Disable bwauth notices for gabelmoo Requested by Sebastian. --- consensus_health_checker.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/consensus_health_checker.py b/consensus_health_checker.py index ba9c2b1..3b3d779 100755 --- a/consensus_health_checker.py +++ b/consensus_health_checker.py @@ -545,6 +545,11 @@ def voting_bandwidth_scanners(latest_consensus, consensuses, votes): contains_measured_bandwidth = True break + # TODO: re-enable when gabelmoo is fixed + + if authority == 'gabelmoo': + continue + if DIRECTORY_AUTHORITIES[authority].is_bandwidth_authority and not contains_measured_bandwidth: missing_authorities.append(authority) if not DIRECTORY_AUTHORITIES[authority].is_bandwidth_authority and contains_measured_bandwidth:
participants (1)
-
atagar@torproject.org