Skip to content

Commit fbeac99

Browse files
committed
Fix warning
1 parent ee1d43b commit fbeac99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oxcache/src/writerpool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ impl Writer {
185185
let data_len = batch_req.data.len(); // Store length before moving
186186
let mut locations = Vec::with_capacity(data_len);
187187

188-
for (i, data) in batch_req.data.into_iter().enumerate() {
188+
for (_i, data) in batch_req.data.into_iter().enumerate() {
189189
// Use eviction bypass for priority batch requests (eviction writes)
190190
let result = self.device.append_with_eviction_bypass(data, true);
191191

0 commit comments

Comments
 (0)