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

Exclude moria1 from `is_orport_reachable` check

Closes: #40029.
parent 69e2a2db
No related branches found
No related tags found
1 merge request!11Exclude moria1 from `is_orport_reachable` check
......@@ -824,7 +824,12 @@ def is_orport_reachable(latest_consensus, consensuses, votes):
issues = []
for authority in list(DIRECTORY_AUTHORITIES.values()):
if authority.nickname in DIRAUTH_SKIP_CHECKS:
# moria1's currently advertized IP address, 128.31.0.39, has routing issues
# which are affecting doctor checks as well. See:
# https://gitlab.torproject.org/tpo/network-health/analysis/-/issues/10 for
# details. We therefore just skip the ORPort check for moria1 for the time
# being to avoid spam on tor-consensus-health@.
if authority.nickname in DIRAUTH_SKIP_CHECKS or authority.nickname == "moria1":
continue
desc = latest_consensus.routers.get(authority.fingerprint)
......
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