From 24bda88330df0180d8748c39325916a75e7df7e3 Mon Sep 17 00:00:00 2001 From: Sam Andreae Date: Fri, 14 Jun 2024 13:01:06 +0100 Subject: [PATCH] Clippy --- aquadoggo/src/replication/strategies/log_height.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aquadoggo/src/replication/strategies/log_height.rs b/aquadoggo/src/replication/strategies/log_height.rs index 7d4fa28f3..67fd40c64 100644 --- a/aquadoggo/src/replication/strategies/log_height.rs +++ b/aquadoggo/src/replication/strategies/log_height.rs @@ -136,7 +136,7 @@ impl LogHeightStrategy { // Retrieve ids for all documents in the store which follow a certain schema id. The result will // include the id for documents which were deleted as we still want to replicate any tombstone // operations. - let schema_document_ids = get_all_document_ids_for_schema(&store, &schema_id).await; + let schema_document_ids = get_all_document_ids_for_schema(store, schema_id).await; let mut schema_blob_documents = vec![];