diff --git a/pageserver/src/tenant/blob_io.rs b/pageserver/src/tenant/blob_io.rs index 058f42b10c..71b0ef3627 100644 --- a/pageserver/src/tenant/blob_io.rs +++ b/pageserver/src/tenant/blob_io.rs @@ -381,7 +381,7 @@ pub(crate) mod tests { let (_, res) = wtr.write_blob(vec![0; PAGE_SZ].slice_len(), ctx).await; let offs = res?; println!("Writing final blob at offs={offs}"); - wtr.into_inner(|_| None).await?; + wtr.into_inner(|_| None).await?; // TODO: this here is the problem with the tests: we're dropping the tail end } Ok((temp_dir, pathbuf, offsets)) }