diff --git a/README.md b/README.md index d9bdb1b..297f956 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ max_requests_per_iter = 10000 channel_recv_timeout_microseconds = 200 [statistics] -interval = 5 +interval = 0 [cleaning] interval = 30 @@ -214,4 +214,4 @@ the password in the field `tls_pkcs12_password` and set `use_tls` to true. ## Trivia -The tracker is called aquatic because it thrives under a torrent of bits ;-) \ No newline at end of file +The tracker is called aquatic because it thrives under a torrent of bits ;-) diff --git a/aquatic_udp/src/lib/config.rs b/aquatic_udp/src/lib/config.rs index 276a313..2296dca 100644 --- a/aquatic_udp/src/lib/config.rs +++ b/aquatic_udp/src/lib/config.rs @@ -151,7 +151,7 @@ impl Default for HandlerConfig { impl Default for StatisticsConfig { fn default() -> Self { Self { - interval: 5, + interval: 0, } } }