From e58e3c7942f6e84504e6192a419db09fdb5e7a06 Mon Sep 17 00:00:00 2001 From: Dylan Brasseur Date: Mon, 16 Oct 2023 14:17:34 +0200 Subject: [PATCH] Only get for properties --- Client/src/Common/Properties.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); }