From 8dcf3e106c70007368a11cca244feda452ebe167 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sat, 30 May 2020 14:55:27 +0200 Subject: [PATCH] aquatic_udp default config: don't print statistics --- README.md | 4 ++-- aquatic_udp/src/lib/config.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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, } } }