Skip to content
Snippets Groups Projects
Unverified Commit 03ab17f5 authored by Georg Koppen's avatar Georg Koppen
Browse files

Bug 40005: Discard dannenberg from missing_authorities

Until tor#40128 is solved there is not much the operator of dannenberg
can do.
parent 28262d9d
No related branches found
No related tags found
1 merge request!1Bug 40005: Discard dannenberg from missing_authorities
#!/usr/bin/env python
# Copyright 2013-2019, Damian Johnson and The Tor Project
# Copyright 2013-2020, Damian Johnson and The Tor Project
# See LICENSE for licensing information
"""
......@@ -644,6 +644,8 @@ def has_authority_flag(latest_consensus, consensuses, votes):
known_authorities = set(DIRECTORY_AUTHORITIES.keys())
missing_authorities = known_authorities.difference(seen_authorities)
# Discard dannenberg for now until tor#40128 is solved, see #40005.
missing_authorities.discard('dannenberg')
extra_authorities = seen_authorities.difference(known_authorities)
issues = []
......
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