diff options
author | Jim Newsome <jnewsome@torproject.org> | 2024-03-12 09:16:47 -0500 |
---|---|---|
committer | Jim Newsome <jnewsome@torproject.org> | 2024-03-14 09:36:59 -0500 |
commit | d2249616090306ff20dc87a7960efa038030f2e8 (patch) | |
tree | 97d752b194deff2e15880832af9e2948ddd0bd9a /changes | |
parent | d1e8c7a60361f2553c1abb1ec1a1e6a1dbc73185 (diff) | |
download | tor-d2249616090306ff20dc87a7960efa038030f2e8.tar.gz tor-d2249616090306ff20dc87a7960efa038030f2e8.zip |
hs_service: don't force high intro point rotation for TestingTorNetwork
This was previously added to facilitate testing intro point rotation
with chutney. However, the implementation is problematic since it forces
excessive rotation whenever TestingTorNetwork is enabled, and can't be
adjusted or disabled.
Alternatives for testing intro point rotation include:
* Using shadow to "fast forward" time
* Overriding the consensus parameters hs_intro_min_lifetime and
hs_intro_max_lifetime.
Fixes #40922
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug40922 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug40922 b/changes/bug40922 new file mode 100644 index 0000000000..e47e4f1461 --- /dev/null +++ b/changes/bug40922 @@ -0,0 +1,5 @@ + o Minor bugfixes (testing): + - Enabling TestingTorNetwork no longer forces fast hidden service + intro point rotation. This reduces noise and errors when + using hidden services with TestingTorNetwork enabled. + Fixes bug 40922; bugfix on 0.3.2.1-alpha. |