commit 54ffd04b6ad19f489f51c7dbcd793f62803865a9
Author: Damian Johnson <atagar(a)torproject.org>
Date: Sat Oct 11 15:03:54 2014 -0700
bad_exits_in_sync wasn't returning its results
Well... doh. This check never actually returned its results, making the check a no-op.
---
consensus_health_checker.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/consensus_health_checker.py b/consensus_health_checker.py
index 8254dc5..4b2df65 100755
--- a/consensus_health_checker.py
+++ b/consensus_health_checker.py
@@ -620,6 +620,8 @@ def bad_exits_in_sync(latest_consensus, consensuses, votes):
issues.append(Issue(Runlevel.NOTICE, 'BADEXIT_OUT_OF_SYNC', fingerprint = fingerprint, with_flag = ', '.join(with_flag), without_flag = ', '.join(without_flag)))
+ return issues
+
def bandwidth_authorities_in_sync(latest_consensus, consensuses, votes):
"""