[tor-commits] [doctor/master] Drop notification about BW authority outages to notice runlevel
atagar at torproject.org
atagar at torproject.org
Sat Apr 22 18:26:18 UTC 2017
commit 134e6be6a2da4f6be04b531ad67f978e419b9efb
Author: Damian Johnson <atagar at torproject.org>
Date: Sat Apr 22 11:32:13 2017 -0700
Drop notification about BW authority outages to notice runlevel
Dropping the runlevel so it provides daily notifications rather than every four
hours. This is because maatuska's is down and there's no ETA for it.
---
consensus_health_checker.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/consensus_health_checker.py b/consensus_health_checker.py
index e67f798..b88f534 100755
--- a/consensus_health_checker.py
+++ b/consensus_health_checker.py
@@ -553,7 +553,7 @@ def voting_bandwidth_scanners(latest_consensus, consensuses, votes):
issues = []
if missing_authorities:
- runlevel = Runlevel.ERROR if len(missing_authorities) > 1 else Runlevel.WARNING
+ runlevel = Runlevel.ERROR if len(missing_authorities) > 1 else Runlevel.NOTICE
issues.append(Issue(runlevel, 'MISSING_BANDWIDTH_SCANNERS', authorities = ', '.join(missing_authorities), to = missing_authorities))
if extra_authorities:
More information about the tor-commits
mailing list