commit d54d5b3aa5ebb084d3eb37cc5ee0e74f30a7f673 Author: Damian Johnson atagar@torproject.org Date: Thu Nov 2 12:03:07 2017 -0700
Drop bwauth exception for gabelmoo
Earlier gabelmoo's bwauth had issues and after a while Sebastian disabled it. During it we disabled this check so he woulnd't spam for having *or* omitting bwauth measurements. Sebastian's now running a bwauth again so dropping this exception. --- consensus_health_checker.py | 5 ----- 1 file changed, 5 deletions(-)
diff --git a/consensus_health_checker.py b/consensus_health_checker.py index 3b3d779..ba9c2b1 100755 --- a/consensus_health_checker.py +++ b/consensus_health_checker.py @@ -545,11 +545,6 @@ 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:
tor-commits@lists.torproject.org