mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-21 15:10:44 +00:00
fixup: order of waiters in delta layer
This commit is contained in:
@@ -996,7 +996,7 @@ impl DeltaLayerInner {
|
||||
(Key, Lsn),
|
||||
sync::oneshot::Sender<Result<Bytes, std::io::Error>>,
|
||||
> = Default::default();
|
||||
for (_, blob_meta) in read.blobs_at.as_slice() {
|
||||
for (_, blob_meta) in read.blobs_at.as_slice().iter().rev() {
|
||||
let (tx, rx) = sync::oneshot::channel();
|
||||
senders.insert((blob_meta.key, blob_meta.lsn), tx);
|
||||
reconstruct_state.update_key(
|
||||
|
||||
Reference in New Issue
Block a user