diff --git a/pageserver/src/pgdatadir_mapping.rs b/pageserver/src/pgdatadir_mapping.rs index 52c44746dc..b611583b60 100644 --- a/pageserver/src/pgdatadir_mapping.rs +++ b/pageserver/src/pgdatadir_mapping.rs @@ -1202,7 +1202,8 @@ impl<'a> DatadirModification<'a> { let mut dir = match self.get(AUX_FILES_KEY, ctx).await { Ok(buf) => AuxFilesDirectory::des(&buf)?, 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); AuxFilesDirectory { files: HashMap::new(), }