diff --git a/Client/src/Common/Properties.cs b/Client/src/Common/Properties.cs index 132452f9..eaee8055 100644 --- a/Client/src/Common/Properties.cs +++ b/Client/src/Common/Properties.cs @@ -328,15 +328,15 @@ public string ConnectionString /// /// Initial backoff from retries /// - public TimeSpan RetryInitialBackoff { get; set; } = TimeSpan.FromSeconds(1); + public TimeSpan RetryInitialBackoff { get; } = TimeSpan.FromSeconds(1); /// /// Backoff multiplier for retries /// - public double RetryBackoffMultiplier { get; set; } = 2; + public double RetryBackoffMultiplier { get; } = 2; /// /// Max backoff for retries /// - public TimeSpan RetryMaxBackoff { get; set; } = TimeSpan.FromSeconds(30); + public TimeSpan RetryMaxBackoff { get; } = TimeSpan.FromSeconds(30); }