diff --git a/pageserver/src/tenant/timeline/detach_ancestor.rs b/pageserver/src/tenant/timeline/detach_ancestor.rs index 36385d1946..efc760afec 100644 --- a/pageserver/src/tenant/timeline/detach_ancestor.rs +++ b/pageserver/src/tenant/timeline/detach_ancestor.rs @@ -507,7 +507,7 @@ impl SharedStateBuilder { assert_eq!(g.latest.is_none(), g.known_ongoing.is_empty()); - g.known_ongoing.extend(self.inprogress.into_iter()); + g.known_ongoing.extend(self.inprogress); if g.latest.is_none() && !g.known_ongoing.is_empty() { g.latest = Some((ExistingAttempt::ReadFromIndexPart, false)); }