[tor-commits] [doctor/master] Reduce fallback notification theshold to 25%

atagar at torproject.org atagar at torproject.org
Tue Jan 15 18:10:00 UTC 2019


commit 9dd9c7ed3354f5abf97e4966593f72f1cc9ff836
Author: Damian Johnson <atagar at torproject.org>
Date:   Tue Jan 15 10:09:13 2019 -0800

    Reduce fallback notification theshold to 25%
    
    Dropping the threshold and adding Colin as requested on...
    
      https://trac.torproject.org/projects/tor/ticket/29094
---
 fallback_directories.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fallback_directories.py b/fallback_directories.py
index 753c745..e5b5ad8 100755
--- a/fallback_directories.py
+++ b/fallback_directories.py
@@ -16,8 +16,8 @@ import util
 
 log = util.get_logger('fallback_directories')
 
-NOTIFICATION_THRESHOLD = 50  # send notice if this percentage of fallbacks are unusable
-TO_ADDRESSES = ['tor-consensus-health at lists.torproject.org', 'teor at torproject.org', 'nickm at torproject.org']
+NOTIFICATION_THRESHOLD = 25  # send notice if this percentage of fallbacks are unusable
+TO_ADDRESSES = ['tor-consensus-health at lists.torproject.org', 'teor at torproject.org', 'nickm at torproject.org', 'colin at torproject.org']
 EMAIL_SUBJECT = 'Fallback Directory Summary (%i/%i, %i%%)'
 
 EMAIL_BODY = """\



More information about the tor-commits mailing list