commit 074ea434f5393d4c0b246e095ccbe1e09ae2c8a5 Author: Damian Johnson atagar@torproject.org Date: Sat Sep 27 21:37:45 2014 -0700
Respecting ignored authorities in 'missing authority signature' check
When turtles goes down we still get...
NOTICE: Consensus fetched from maatuska was missing the following authority signatures: turtles NOTICE: Consensus fetched from tor26 was missing the following authority signatures: turtles NOTICE: Consensus fetched from urras was missing the following authority signatures: turtles NOTICE: Consensus fetched from dizum was missing the following authority signatures: turtles NOTICE: Consensus fetched from gabelmoo was missing the following authority signatures: turtles NOTICE: Consensus fetched from moria1 was missing the following authority signatures: turtles NOTICE: Consensus fetched from dannenberg was missing the following authority signatures: turtles NOTICE: Consensus fetched from Faravahar was missing the following authority signatures: turtles
Properly suppressing this. --- consensus_health_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/consensus_health_checker.py b/consensus_health_checker.py index 9ae9f8d..30693d5 100755 --- a/consensus_health_checker.py +++ b/consensus_health_checker.py @@ -442,7 +442,7 @@ def has_all_signatures(latest_consensus, consensuses, votes):
missing_authority = missing_signature
- for authority in DIRECTORY_AUTHORITIES.values(): + for authority in directory_authorities().values(): if authority.v3ident == missing_signature: missing_authority = authority.nickname break