Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
doctor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Network Health
doctor
Commits
ed2ccd5f
Commit
ed2ccd5f
authored
5 years ago
by
Damian Johnson
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Disable DocTor checks for dannenberg"
This reverts commit
3f1c5f67
and
7b121dc3
.
parent
7b121dc3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
consensus_health_checker.py
+0
-8
0 additions, 8 deletions
consensus_health_checker.py
descriptor_checker.py
+0
-2
0 additions, 2 deletions
descriptor_checker.py
with
0 additions
and
10 deletions
consensus_health_checker.py
+
0
−
8
View file @
ed2ccd5f
...
...
@@ -28,11 +28,6 @@ Runlevel = stem.util.enum.UppercaseEnum('NOTICE', 'WARNING', 'ERROR')
DIRECTORY_AUTHORITIES
=
stem
.
directory
.
Authority
.
from_cache
()
del
DIRECTORY_AUTHORITIES
[
'
tor26
'
]
# DirPort does not service requests without a '.z' suffix
# dannenberg runs tor's long-term-stable release which does not support the
# most recent consensus method, breaking its ability to sign the consensus
del
DIRECTORY_AUTHORITIES
[
'
dannenberg
'
]
EMAIL_SUBJECT
=
'
Consensus issues
'
BANDWIDTH_AUTHORITIES
=
(
'
moria1
'
,
'
gabelmoo
'
,
'
maatuska
'
,
'
Faravahar
'
,
'
bastet
'
,
'
longclaw
'
)
...
...
@@ -646,9 +641,6 @@ def has_authority_flag(latest_consensus, consensuses, votes):
if
'
tor26
'
in
seen_authorities
:
seen_authorities
.
remove
(
'
tor26
'
)
if
'
dannenberg
'
in
seen_authorities
:
seen_authorities
.
remove
(
'
dannenberg
'
)
known_authorities
=
set
(
DIRECTORY_AUTHORITIES
.
keys
())
missing_authorities
=
known_authorities
.
difference
(
seen_authorities
)
extra_authorities
=
seen_authorities
.
difference
(
known_authorities
)
...
...
This diff is collapsed.
Click to expand it.
descriptor_checker.py
+
0
−
2
View file @
ed2ccd5f
...
...
@@ -67,8 +67,6 @@ def main():
continue
# authority doesn't vote in the consensus
elif
authority
.
nickname
==
'
tor26
'
:
continue
# DirPort doesn't accept requests without a .z suffix
elif
authority
.
nickname
==
'
dannenberg
'
:
continue
# unable to sign consensus (see commit 3f1c5f6)
log
.
debug
(
"
Downloading the consensus from %s...
"
%
authority
.
nickname
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment