This commit is contained in:
2025-10-17 17:19:45 +02:00
parent c2b0351598
commit 5666dc4a4b
3 changed files with 19 additions and 8 deletions
+5 -1
View File
@@ -1990,7 +1990,11 @@ async fn quickwit_search(endpoint: &str, index: &str, query: &str) -> anyhow::Re
}
}
debug!(total_hits = total_hits, unique_ids = doc_ids.len(), "quickwit search completed");
debug!(
total_hits = total_hits,
unique_ids = doc_ids.len(),
"quickwit search completed"
);
Ok(doc_ids)
}