image_layer: don't do .rev(), it's confusing and unlike what we did before

This commit is contained in:
Christian Schwarz
2024-09-15 12:58:13 +01:00
parent 9f97523d0d
commit 1b3209497f

View File

@@ -619,7 +619,7 @@ impl ImageLayerInner {
match res {
Ok(blobs_buf) => {
for meta in blobs_buf.blobs.iter().rev() {
for meta in blobs_buf.blobs.iter() {
let buf = &blobs_buf.buf[meta.start..meta.end];
let sender = senders
.remove(&(meta.meta.key, meta.meta.lsn))