pageserver: fix the second "AUX files" warning (#5673)

In https://github.com/neondatabase/neon/pull/5669 I didn't notice that
the same warning is logged in two places: fix the other one.
This commit is contained in:
John Spray
2023-10-26 14:54:52 +01:00
committed by GitHub
parent de90bf4663
commit ba4fe9e10f

View File

@@ -552,7 +552,8 @@ impl Timeline {
Err(e) => Err(PageReconstructError::from(e)),
},
Err(e) => {
warn!("Failed to get info about AUX files: {}", e);
// This is expected: historical databases do not have the key.
debug!("Failed to get info about AUX files: {}", e);
Ok(HashMap::new())
}
}