diff --git a/tornettools/generate_tor.py b/tornettools/generate_tor.py index 3449e69..5c36ecd 100644 --- a/tornettools/generate_tor.py +++ b/tornettools/generate_tor.py @@ -304,6 +304,8 @@ def __generate_torrc_relay_authority(conf_path, relays): torrc_file.write('TestingDirAuthVoteGuardIsStrict 1\n') torrc_file.write('TestingDirAuthVoteExit {}\n'.format(','.join(exit_fps))) torrc_file.write('TestingDirAuthVoteExitIsStrict 1\n') + # Ensure all relays get the Stable flag. See #123. + torrc_file.write('AuthDirVoteStableGuaranteeMinUptime 0\n') torrc_file.close()