From 230d0df07a9ec95c8149fc9359eb457c1746d6aa Mon Sep 17 00:00:00 2001 From: Alex Chi Z Date: Tue, 24 Jun 2025 15:22:34 -0400 Subject: [PATCH] fix(storcon): allow migration if lag is not available Signed-off-by: Alex Chi Z --- storage_controller/src/service.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/storage_controller/src/service.rs b/storage_controller/src/service.rs index 8424c27cf8..5d53164e08 100644 --- a/storage_controller/src/service.rs +++ b/storage_controller/src/service.rs @@ -8997,11 +8997,8 @@ impl Service { continue; } Ok(None) => { - tracing::info!( - tenant_id=%tid.tenant_id, shard_id=%tid.shard_slug(), - "Could not determine lag for secondary on node {dest_node_id}. Skipping reconcile." - ); - continue; + // The tenant might have just been created and the lag is not yet available. + // Migrate it away is fine. } Err(err) => { tracing::warn!(