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

Fix DIRAUTH_SKIP_CHECKS constants

Good catch from starlight on ticket #32842 that these require a comma so the
constants are tuples rather than strings.
parent 062cace5
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ Runlevel = stem.util.enum.UppercaseEnum('NOTICE', 'WARNING', 'ERROR')
DIRECTORY_AUTHORITIES = stem.directory.Authority.from_cache()
DIRAUTH_SKIP_CHECKS = (
'tor26' # tor26 DirPort does not service requests without a .z suffix
'tor26', # tor26 DirPort does not service requests without a .z suffix
)
EMAIL_SUBJECT = 'Consensus issues'
......
......@@ -30,7 +30,7 @@ error: %s
"""
DIRAUTH_SKIP_CHECKS = (
'tor26' # tor26 DirPort does not service requests without a .z suffix
'tor26', # tor26 DirPort does not service requests without a .z suffix
)
log = util.get_logger('descriptor_checker')
......
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