aquatic_udp default config: don't print statistics

This commit is contained in:
Joakim Frostegård 2020-05-30 14:55:27 +02:00
parent 897e2f748c
commit 8dcf3e106c
2 changed files with 3 additions and 3 deletions

View file

@ -116,7 +116,7 @@ max_requests_per_iter = 10000
channel_recv_timeout_microseconds = 200 channel_recv_timeout_microseconds = 200
[statistics] [statistics]
interval = 5 interval = 0
[cleaning] [cleaning]
interval = 30 interval = 30
@ -214,4 +214,4 @@ the password in the field `tls_pkcs12_password` and set `use_tls` to true.
## Trivia ## Trivia
The tracker is called aquatic because it thrives under a torrent of bits ;-) The tracker is called aquatic because it thrives under a torrent of bits ;-)

View file

@ -151,7 +151,7 @@ impl Default for HandlerConfig {
impl Default for StatisticsConfig { impl Default for StatisticsConfig {
fn default() -> Self { fn default() -> Self {
Self { Self {
interval: 5, interval: 0,
} }
} }
} }