diff options
author | David Goulet <dgoulet@ev0ke.net> | 2016-04-05 14:43:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-04-07 10:57:59 -0400 |
commit | 40827da3bfafb3191433d4151d48f79c511dcd42 (patch) | |
tree | 15708670690aa920a99c0b9580ecdbc38795969c /src/test/test_options.c | |
parent | d8a056daed78c9794037931db81b97d596505bb7 (diff) | |
download | tor-40827da3bfafb3191433d4151d48f79c511dcd42.tar.gz tor-40827da3bfafb3191433d4151d48f79c511dcd42.zip |
Turn TestingClientBootstrap* into non-testing options
This changes simply renames them by removing "Testing" in front of them and
they do not require TestingTorNetwork to be enabled anymore.
Fixes #18481
Signed-off-by: David Goulet <dgoulet@ev0ke.net>
Diffstat (limited to 'src/test/test_options.c')
-rw-r--r-- | src/test/test_options.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/test_options.c b/src/test/test_options.c index bd00e6105e..4f24757a85 100644 --- a/src/test/test_options.c +++ b/src/test/test_options.c @@ -307,9 +307,9 @@ fixed_get_uname(void) } #define TEST_OPTIONS_OLD_VALUES "TestingV3AuthInitialVotingInterval 1800\n" \ - "TestingClientBootstrapConsensusMaxDownloadTries 7\n" \ - "TestingClientBootstrapConsensusAuthorityOnlyMaxDownloadTries 4\n" \ - "TestingClientBootstrapConsensusMaxInProgressTries 3\n" \ + "ClientBootstrapConsensusMaxDownloadTries 7\n" \ + "ClientBootstrapConsensusAuthorityOnlyMaxDownloadTries 4\n" \ + "ClientBootstrapConsensusMaxInProgressTries 3\n" \ "TestingV3AuthInitialVoteDelay 300\n" \ "TestingV3AuthInitialDistDelay 300\n" \ "TestingClientMaxIntervalWithoutRequest 600\n" \ |