Skip to content

Commit

Permalink
bugfix: call group count for search_over_groups
Browse files Browse the repository at this point in the history
  • Loading branch information
densumesh committed Dec 14, 2024
1 parent c0b3c3b commit c589fbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/src/operators/qdrant_operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,8 @@ pub async fn search_over_groups_qdrant_query(

let count_limit = if !get_total_pages { 0_u64 } else { 100000_u64 };

let count_future = count_qdrant_query(count_limit, queries.clone(), dataset_config.clone());
let count_future =
count_qdrant_group_query(count_limit, queries.clone(), dataset_config.clone());

let search_point_req_payloads: Vec<QueryPointGroups> = queries
.into_iter()
Expand Down

0 comments on commit c589fbe

Please sign in to comment.