From d1277b8259eda814e8f097dd819b7c1bc2a1816e Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Fri, 11 Apr 2025 13:26:39 +0200 Subject: [PATCH] I have a hypothesis for what the issue is with the vectored_blob_io::tests::test_really_big_array --- pageserver/src/tenant/blob_io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) }