pull_timeline: check tombstones by default (#11873)

Make `pull_timeline` check tombstones by default. Otherwise, we'd be
recreating timelines if the order between creation and deletion got
mixed up, as seen in #11838.

Fixes #11838.
This commit is contained in:
Arpad Müller
2025-05-12 09:25:54 +02:00
committed by GitHub
parent 64353b48db
commit a537b2ffd0
3 changed files with 7 additions and 1 deletions

View File

@@ -299,6 +299,7 @@ pub struct PullTimelineRequest {
pub tenant_id: TenantId,
pub timeline_id: TimelineId,
pub http_hosts: Vec<String>,
pub ignore_tombstone: Option<bool>,
}
#[derive(Debug, Serialize, Deserialize)]