From f00a69df4b031fbb3291def43a851c8a7457c4ca Mon Sep 17 00:00:00 2001 From: Kumar Shivendu Date: Tue, 6 Jan 2026 00:57:25 +0530 Subject: [PATCH] Fix total count in replicate points progress tracker (#7857) * Fix total count in replicate points progress tracker * clippy --- lib/collection/src/shards/transfer/stream_records.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/collection/src/shards/transfer/stream_records.rs b/lib/collection/src/shards/transfer/stream_records.rs index 1af92c4749..af23914fde 100644 --- a/lib/collection/src/shards/transfer/stream_records.rs +++ b/lib/collection/src/shards/transfer/stream_records.rs @@ -84,7 +84,7 @@ pub(super) async fn transfer_stream_records( }; replica_set - .proxify_local(remote_shard.clone(), None, filter) + .proxify_local(remote_shard.clone(), None, filter.clone()) .await?; // Don't increment hardware usage for internal operations @@ -92,7 +92,7 @@ pub(super) async fn transfer_stream_records( let Some(count_result) = replica_set .count_local( Arc::new(CountRequestInternal { - filter: None, + filter, exact: false, }), None, // no timeout