commit 3315ad585498b64e0822c3c5bed6dcd84f129b0b Author: Damian Johnson atagar@torproject.org Date: Tue Nov 10 10:03:02 2015 -0800
Resume notifications for urras
Urras is back but not yet voting. Jake is working on it. Resuming notifications for the authority.
This reverts commit 74f430475c983a713a19a6a0791aac4fa76850d9. --- consensus_health_checker.py | 7 +------ descriptor_checker.py | 5 ----- 2 files changed, 1 insertion(+), 11 deletions(-)
diff --git a/consensus_health_checker.py b/consensus_health_checker.py index b4e16a9..1224dfc 100755 --- a/consensus_health_checker.py +++ b/consensus_health_checker.py @@ -601,7 +601,7 @@ def has_authority_flag(latest_consensus, consensuses, votes): if Flag.AUTHORITY in desc.flags: seen_authorities.add(desc.nickname)
- known_authorities = set(DIRECTORY_AUTHORITIES.keys()) - set(['urras']) + known_authorities = set(DIRECTORY_AUTHORITIES.keys()) missing_authorities = known_authorities.difference(seen_authorities) extra_authorities = seen_authorities.difference(known_authorities)
@@ -761,11 +761,6 @@ def _get_documents(label, resource): documents, times_taken, issues = {}, {}, []
for authority in DIRECTORY_AUTHORITIES.values(): - # skip urras, it's having a long outage - - if authority.nickname == 'urras': - continue - if authority.v3ident is None: continue # not a voting authority
diff --git a/descriptor_checker.py b/descriptor_checker.py index 434b4d6..05a6513 100755 --- a/descriptor_checker.py +++ b/descriptor_checker.py @@ -60,11 +60,6 @@ def main(): # download the consensus from each authority
for authority in stem.descriptor.remote.get_authorities().values(): - # skip urras, it's having a long outage - - if authority.nickname == 'urras': - continue - # skip authorities that don't vote in the consensus
if authority.v3ident is None: