From 9aa0cdee838f6103065127810863d641138dbd83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arpad=20M=C3=BCller?= Date: Thu, 22 May 2025 15:00:57 +0200 Subject: [PATCH] fix --- pageserver/src/tenant.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pageserver/src/tenant.rs b/pageserver/src/tenant.rs index 914eb75108..a50ca3451a 100644 --- a/pageserver/src/tenant.rs +++ b/pageserver/src/tenant.rs @@ -2852,6 +2852,11 @@ impl TenantShard { // Callers are responsible to wait for uploads to complete and for activating the timeline. + timeline + .remote_client + .schedule_index_upload_for_full_metadata_update(&new_metadata) + .context("imported timeline initial metadata upload")?; + // 4. finish Ok(CreateTimelineResult::Created(timeline)) }