We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee1d43b commit fbeac99Copy full SHA for fbeac99
oxcache/src/writerpool.rs
@@ -185,7 +185,7 @@ impl Writer {
185
let data_len = batch_req.data.len(); // Store length before moving
186
let mut locations = Vec::with_capacity(data_len);
187
188
- for (i, data) in batch_req.data.into_iter().enumerate() {
+ for (_i, data) in batch_req.data.into_iter().enumerate() {
189
// Use eviction bypass for priority batch requests (eviction writes)
190
let result = self.device.append_with_eviction_bypass(data, true);
191
0 commit comments