summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorMike Perry <mikeperry-git@fscked.org>2012-10-25 17:43:10 -0700
committerNick Mathewson <nickm@torproject.org>2012-12-07 10:34:09 -0500
commit42e3c04a7a5fb47a97766e54c72885c5c2bf23a9 (patch)
tree8152658f1006592a3b35d88e8fcf7d1c4ae9ad0f /changes
parentbd93ff8dd76b06ca3afe1f362b086d4f12639f71 (diff)
downloadtor-42e3c04a7a5fb47a97766e54c72885c5c2bf23a9.tar.gz
tor-42e3c04a7a5fb47a97766e54c72885c5c2bf23a9.zip
Bug 3443: Don't count ORconn setup in circuit build time.
Also, add a hack Roger suggested where we're more patient if no circuits are opened yet.
Diffstat (limited to 'changes')
-rw-r--r--changes/bug344311
1 files changed, 11 insertions, 0 deletions
diff --git a/changes/bug3443 b/changes/bug3443
new file mode 100644
index 0000000000..01896ffb38
--- /dev/null
+++ b/changes/bug3443
@@ -0,0 +1,11 @@
+ o Minor bugfixes
+ - Alter circuit build timeout measurement to start at the point
+ where we begin the CREATE/CREATE_FAST step (as opposed to circuit
+ initialization). This should make our timeout measurements more
+ uniform. Previously, we were sometimes including ORconn setup time
+ in our circuit build time measurements. Fixes bug #3443.
+
+ o Minor features
+ - If we have no circuits open, use a relaxed timeout (the 95-percentile
+ cutoff) until a circuit succeeds. This should allow Tor to succeed
+ building circuits if the network connection drastically changes.