feat(site-runtime): wire ConfigFetchRetryCount into the standby replicated-config fetch (UA2)

This commit is contained in:
Joseph Doherty
2026-07-09 01:26:58 -04:00
parent c457e8f464
commit 29ee9176a7
4 changed files with 89 additions and 35 deletions
@@ -61,8 +61,9 @@ public class SiteRuntimeOptions
public int ConfigFetchTimeoutSeconds { get; set; } = 30;
/// <summary>
/// Bounded retry count for the standby's best-effort replicated-config fetch.
/// Reserved — consumed by the standby replication fetch in a later task; not yet wired.
/// Bounded attempt count (including the first) for the standby's replicated-config
/// fetch; a 2 s fixed delay separates attempts and superseded fetches never retry.
/// Consumed by <c>SiteReplicationActor.HandleApplyConfigDeploy</c> (UA2). Default: 3.
/// </summary>
public int ConfigFetchRetryCount { get; set; } = 3;