From 4537184f42ea8154695047a524c40f2404da6412 Mon Sep 17 00:00:00 2001 From: Vlad Lazar Date: Tue, 21 Jan 2025 17:40:44 +0100 Subject: [PATCH] increse interval --- .../src/tenant/timeline/walreceiver/connection_manager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pageserver/src/tenant/timeline/walreceiver/connection_manager.rs b/pageserver/src/tenant/timeline/walreceiver/connection_manager.rs index 2b99a29a8d..f413fc2783 100644 --- a/pageserver/src/tenant/timeline/walreceiver/connection_manager.rs +++ b/pageserver/src/tenant/timeline/walreceiver/connection_manager.rs @@ -107,7 +107,7 @@ pub(super) async fn connection_manager_loop_step( let mut broker_subscription = subscribe_for_timeline_updates(broker_client, id, cancel).await?; debug!("Subscribed for broker timeline updates"); - const WARN_ON_INACTIVE_AFTER: Duration = Duration::from_secs(60); + const WARN_ON_INACTIVE_AFTER: Duration = Duration::from_secs(180); loop { let time_until_next_retry = connection_manager_state.time_until_next_retry();