diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-02-06 13:03:01 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-02-06 13:03:01 -0500 |
commit | edc6fa25706534b35259111797fade88c9b694da (patch) | |
tree | 7eca3c9695e1e821332856b55623429162a77bf5 /src/or/main.c | |
parent | 35115496511f64c08849a039c926910739467169 (diff) | |
download | tor-edc6fa25706534b35259111797fade88c9b694da.tar.gz tor-edc6fa25706534b35259111797fade88c9b694da.zip |
Deliver circuit handshake counts as part of the heartbeat
Previously, they went out once an hour, unconditionally.
Fixes 10485; bugfix on 0.2.4.17-rc.
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/or/main.c b/src/or/main.c index deed798e80..bd23141b97 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1353,11 +1353,6 @@ run_scheduled_events(time_t now) next_time_to_write_stats_files = next_write; } time_to_write_stats_files = next_time_to_write_stats_files; - - /* Also commandeer this opportunity to log how our circuit handshake - * stats have been doing. */ - if (public_server_mode(options)) - rep_hist_log_circuit_handshake_stats(now); } /* 1h. Check whether we should write bridge statistics to disk. |