Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/OrleansAzureUtils/AzureClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ namespace Orleans.Runtime.Host
public static class AzureClient
{
/// <summary>Number of retry attempts to make when searching for gateway silos to connect to.</summary>
public static int MaxRetries = AzureConstants.MAX_RETRIES; // 120 x 5s = Total: 10 minutes
public static readonly int MaxRetries = AzureConstants.MAX_RETRIES; // 120 x 5s = Total: 10 minutes
/// <summary>Amount of time to pause before each retry attempt.</summary>
public static TimeSpan StartupRetryPause = AzureConstants.STARTUP_TIME_PAUSE; // 5 seconds
public static readonly TimeSpan StartupRetryPause = AzureConstants.STARTUP_TIME_PAUSE; // 5 seconds

/// <summary>
/// Whether the Orleans Azure client runtime has already been initialized
Expand Down