Skip to content
Snippets Groups Projects
Commit 757608cb authored by Damian Johnson's avatar Damian Johnson
Browse files

Drop StaleDesc notifications

Only moria1 votes on the new flag. Treating it in the same way as BadExit...

  https://lists.torproject.org/pipermail/tor-consensus-health/2018-December/009451.html
parent 37a1d61b
No related branches found
No related tags found
No related merge requests found
......@@ -675,11 +675,11 @@ def has_similar_flag_counts(latest_consensus, consensuses, votes):
for flag, count in flag_count.items():
# Skipping check for the following flags because...
#
# * BadExit is only voted on by a few authorities.
# * BadExit and StaleDesc is only voted on by a few authorities.
# * Running isn't voted on when an authority first starts up.
# * moria1 likes to experiment with the HSDir flag.
if flag in ('BadExit', 'Running', 'HSDir'):
if flag in ('BadExit', 'Running', 'HSDir', 'StaleDesc'):
continue
vote_count = authority_flag_count.get(flag, 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment