From 02aa6c830250b46357db30e7c72eb435822f5c84 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Thu, 10 Jul 2025 20:09:53 +0000 Subject: [PATCH] drop this --- pageserver/src/tenant/timeline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pageserver/src/tenant/timeline.rs b/pageserver/src/tenant/timeline.rs index 0953b7a31f..d26cf6287a 100644 --- a/pageserver/src/tenant/timeline.rs +++ b/pageserver/src/tenant/timeline.rs @@ -6628,7 +6628,7 @@ impl Timeline { let standby_horizon = self.standby_horizon.load(); // Hold GC for the standby, but as a safety guard do it only within some // reasonable lag. - if standby_horizon != Lsn::INVALID { + if true && standby_horizon != Lsn::INVALID { if let Some(standby_lag) = new_gc_cutoff.checked_sub(standby_horizon) { const MAX_ALLOWED_STANDBY_LAG: u64 = 10u64 << 30; // 10 GB if standby_lag.0 < MAX_ALLOWED_STANDBY_LAG {