From b06cb500c44da0954e73760c84e86b3192a1411a Mon Sep 17 00:00:00 2001 From: Vishal Kumar Singh Date: Sat, 16 May 2026 13:56:19 +0530 Subject: [PATCH] fix(cli): correct merge command description The previous description suggested that the command merges all splits into one, but it actually runs available merge operations according to the merge policy. Closes #3805 --- quickwit/quickwit-cli/src/tool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickwit/quickwit-cli/src/tool.rs b/quickwit/quickwit-cli/src/tool.rs index 0fd6b1917ca..91be5c08304 100644 --- a/quickwit/quickwit-cli/src/tool.rs +++ b/quickwit/quickwit-cli/src/tool.rs @@ -154,7 +154,7 @@ pub fn build_tool_command() -> Command { .subcommand( Command::new("merge") .display_order(10) - .about("Merges all the splits for a given Node ID, index ID, source ID.") + .about("Runs available merge operations for a given index ID and source ID.") .args(&[ arg!(--index "ID of the target index.") .display_order(1)