pageserver: tolerate missing delete marker

This commit is contained in:
John Spray
2023-10-18 09:06:47 +01:00
parent 2a77f6d61d
commit 435b592fc4

View File

@@ -294,6 +294,7 @@ async fn cleanup_remaining_timeline_fs_traces(
// Remove delete mark
tokio::fs::remove_file(conf.timeline_delete_mark_file_path(tenant_id, timeline_id))
.await
.or_else(fs_ext::ignore_not_found)
.context("remove delete mark")
}