From ac8b4048fdc7cc4f93e5c0ecff6c9f7b4aea5f60 Mon Sep 17 00:00:00 2001 From: Alex Chi Z Date: Tue, 11 Mar 2025 15:15:56 -0400 Subject: [PATCH] fix err msg Signed-off-by: Alex Chi Z --- pageserver/src/tenant/timeline/detach_ancestor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pageserver/src/tenant/timeline/detach_ancestor.rs b/pageserver/src/tenant/timeline/detach_ancestor.rs index fb539a616d..8076c98790 100644 --- a/pageserver/src/tenant/timeline/detach_ancestor.rs +++ b/pageserver/src/tenant/timeline/detach_ancestor.rs @@ -29,7 +29,7 @@ pub(crate) enum Error { #[error("no ancestors")] NoAncestor, - #[error("the branch has more than 1 ancestor and cannot be fast-path detached")] + #[error("too many ancestors")] TooManyAncestors, #[error("shutting down, please retry later")]