--- /dev/null
+ o Minor bugfixes:
+ - Rate-limit the "No circuits are opened. Relaxed timeout for a
+ circuit with channel state open..." message to once per hour to
+ keep it from filling the notice logs. Mitigates bug 7799 but does
+ not fix the underlying cause. Bugfix on 0.2.4.7-alpha.
+
}
continue;
} else {
- log_notice(LD_CIRC,
+ static ratelim_t relax_timeout_limit = RATELIM_INIT(3600);
+ char *m;
+ if ((m = rate_limit_log(&relax_timeout_limit, approx_time()))) {
+ log_notice(LD_CIRC,
"No circuits are opened. Relaxed timeout for "
"a circuit with channel state %s to %ldms. "
"However, it appears the circuit has timed out anyway. "
- "%d guards are live. ",
+ "%d guards are live. %s",
channel_state_to_string(victim->n_chan->state),
- (long)circ_times.close_ms, num_live_entry_guards(0));
+ (long)circ_times.close_ms, num_live_entry_guards(0), m);
+ tor_free(m);
+ }
}
}