mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-06 18:10:58 -05:00
Fix total count in replicate points progress tracker (#7857)
* Fix total count in replicate points progress tracker * clippy
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user