commit 7b121dc307e4652215389581b7e5acf074175a3e Author: Damian Johnson atagar@torproject.org Date: Tue Sep 24 17:06:15 2019 -0700
Disable consensus check for dannenberg
Oops, I also get notifications for this daemon as well. --- descriptor_checker.py | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/descriptor_checker.py b/descriptor_checker.py index 1d464f8..9fd9a57 100755 --- a/descriptor_checker.py +++ b/descriptor_checker.py @@ -67,6 +67,8 @@ 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)
tor-commits@lists.torproject.org