Skip to content

Commit

Permalink
Only get for properties
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrasseur-aneo committed Oct 16, 2023
1 parent 5697121 commit e58e3c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Client/src/Common/Properties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -328,15 +328,15 @@ public string ConnectionString
/// <summary>
/// Initial backoff from retries
/// </summary>
public TimeSpan RetryInitialBackoff { get; set; } = TimeSpan.FromSeconds(1);
public TimeSpan RetryInitialBackoff { get; } = TimeSpan.FromSeconds(1);

/// <summary>
/// Backoff multiplier for retries
/// </summary>
public double RetryBackoffMultiplier { get; set; } = 2;
public double RetryBackoffMultiplier { get; } = 2;

/// <summary>
/// Max backoff for retries
/// </summary>
public TimeSpan RetryMaxBackoff { get; set; } = TimeSpan.FromSeconds(30);
public TimeSpan RetryMaxBackoff { get; } = TimeSpan.FromSeconds(30);
}

0 comments on commit e58e3c7

Please sign in to comment.