diff options
author | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-01-12 13:56:45 +1100 |
---|---|---|
committer | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-01-12 13:56:45 +1100 |
commit | bc2bed89792ef6cabb42a88629615eac699d6cdf (patch) | |
tree | 0155e3c193d048aba7db374cbb0a429332d00b4d /scripts | |
parent | 16840e52e594e221069efc9bf7b65ebfb5e2d639 (diff) | |
download | tor-bc2bed89792ef6cabb42a88629615eac699d6cdf.tar.gz tor-bc2bed89792ef6cabb42a88629615eac699d6cdf.zip |
Don't reduce the weight of exits selected as fallback directories
When selecting exits as fallback directories, don't reduce
their weights.
Closes ticket #17888.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/maint/updateFallbackDirs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/maint/updateFallbackDirs.py b/scripts/maint/updateFallbackDirs.py index 8fe234f206..53676c08fa 100755 --- a/scripts/maint/updateFallbackDirs.py +++ b/scripts/maint/updateFallbackDirs.py @@ -98,7 +98,7 @@ MIN_FALLBACK_COUNT = 100 ## Fallback Weight Settings # Any fallback with the Exit flag has its weight multipled by this fraction -EXIT_WEIGHT_FRACTION = 0.2 +EXIT_WEIGHT_FRACTION = 1.0 # If True, emit a C #error if we can't satisfy various constraints # If False, emit a C comment instead |