summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorMike Perry <mikeperry-git@torproject.org>2020-11-03 14:28:43 -0600
committerMike Perry <mikeperry-git@torproject.org>2021-02-18 11:21:25 -0600
commitc90b0cb6fb4e5fd2dcc1b711f5ee5ca04576646e (patch)
tree2bd74241938ae0fc68a374fd245aee76b787a4aa /src/core
parent761dd9f2ab240fb6ce80087e1c2feecd095d71f9 (diff)
downloadtor-c90b0cb6fb4e5fd2dcc1b711f5ee5ca04576646e.tar.gz
tor-c90b0cb6fb4e5fd2dcc1b711f5ee5ca04576646e.zip
Raise the circuit close time quantile to 99.
This should allow us to more accurately estimate pareto parameters without relying on "right-censorship" of circuit build timeout values.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/or/circuitstats.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/circuitstats.h b/src/core/or/circuitstats.h
index 1cd16b6f2b..e7262e9e82 100644
--- a/src/core/or/circuitstats.h
+++ b/src/core/or/circuitstats.h
@@ -78,7 +78,7 @@ void circuit_build_times_mark_circ_as_measurement_only(origin_circuit_t *circ);
* How long to wait before actually closing circuits that take too long to
* build in terms of CDF quantile.
*/
-#define CBT_DEFAULT_CLOSE_QUANTILE 95
+#define CBT_DEFAULT_CLOSE_QUANTILE 99
#define CBT_MIN_CLOSE_QUANTILE CBT_MIN_QUANTILE_CUTOFF
#define CBT_MAX_CLOSE_QUANTILE CBT_MAX_QUANTILE_CUTOFF