[tor-commits] [doctor/master] Resume notifications for urras

atagar at torproject.org atagar at torproject.org
Tue Sep 15 14:55:13 UTC 2015


commit 1cdc574680e0dae441cb1f6ed9e74b290df758f1
Author: Damian Johnson <atagar at torproject.org>
Date:   Tue Sep 15 07:58:09 2015 -0700

    Resume notifications for urras
    
    This reverts commit df27eacbcd69255f86ce528beaab393435cc2eee.
---
 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 8733cb4..1be5794 100755
--- a/consensus_health_checker.py
+++ b/consensus_health_checker.py
@@ -599,7 +599,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)
 
@@ -724,11 +724,6 @@ def _get_documents(label, resource):
   queries, documents, 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 8050ca8..6b28d95 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:



More information about the tor-commits mailing list