commit 87931faf749c0a7e32ff2003349df547944a8b90 Author: Damian Johnson atagar@torproject.org Date: Wed May 20 00:47:49 2015 -0700
Disable bwauth notifications for tor26
Peter's having issues with his bwauth and has shut it down. No point in spamming him unnecessarily. --- consensus_health_checker.py | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/consensus_health_checker.py b/consensus_health_checker.py index 2e15720..6358a35 100755 --- a/consensus_health_checker.py +++ b/consensus_health_checker.py @@ -50,7 +50,13 @@ downloader = stem.descriptor.remote.DescriptorDownloader(
Destination = collections.namedtuple('Destination', ('address', 'bcc'))
+# Bandwidth authorities have been having issues... +# +# maatuska: https://trac.torproject.org/projects/tor/ticket/14177 +# tor26: dir-auth@ notice 5/20/15 + DIRECTORY_AUTHORITIES['maatuska'].is_bandwidth_authority = False +DIRECTORY_AUTHORITIES['tor26'].is_bandwidth_authority = False
class Issue(object):
tor-commits@lists.torproject.org