This is an automated email from the ASF dual-hosted git repository.

fresh-borzoni pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss-rust.git


The following commit(s) were added to refs/heads/main by this push:
     new 97231ea0 chore: fix main broken due to new clippy useless_conversion 
(#548)
97231ea0 is described below

commit 97231ea0ab366f0d0f6d98eb8fcbc3756b13e962
Author: Anton Borisov <[email protected]>
AuthorDate: Fri May 15 14:23:57 2026 +0100

    chore: fix main broken due to new clippy useless_conversion (#548)
---
 crates/fluss/src/client/lookup/lookup_sender.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crates/fluss/src/client/lookup/lookup_sender.rs 
b/crates/fluss/src/client/lookup/lookup_sender.rs
index 1e337f83..06014bfb 100644
--- a/crates/fluss/src/client/lookup/lookup_sender.rs
+++ b/crates/fluss/src/client/lookup/lookup_sender.rs
@@ -197,7 +197,7 @@ impl<T> LookupBatch<T> {
             return;
         }
 
-        for (lookup, value) in self.lookups.iter_mut().zip(values.into_iter()) 
{
+        for (lookup, value) in self.lookups.iter_mut().zip(values) {
             lookup.complete(Ok(value));
         }
     }

Reply via email to