Skip to content
Snippets Groups Projects
Commit be40bb3b authored by David Goulet's avatar David Goulet :panda_face:
Browse files

Merge branch 'bug_40005' into 'master'

Bug 40005: Discard dannenberg from missing_authorities

See merge request !1
parents 28262d9d 03ab17f5
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