From 0cfeee13eef32e2d3567caca8194dd591a76d7ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Mon, 9 Nov 2020 17:34:52 +0100 Subject: [PATCH] Reduce the number of documents limit when update progress are sent --- http-ui/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http-ui/src/main.rs b/http-ui/src/main.rs index bfd326837..a72799770 100644 --- a/http-ui/src/main.rs +++ b/http-ui/src/main.rs @@ -69,7 +69,7 @@ pub struct Opt { pub struct IndexerOpt { /// The amount of documents to skip before printing /// a log regarding the indexing advancement. - #[structopt(long, default_value = "1000000")] // 1m + #[structopt(long, default_value = "100000")] // 100k pub log_every_n: usize, /// MTBL max number of chunks in bytes.