Skip to content

Commit

Permalink
Add default value for health check expiry (#3345)
Browse files Browse the repository at this point in the history
add default for health check expiry
  • Loading branch information
jnlycklama committed Feb 6, 2024
1 parent ac4d393 commit 23fb253
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ internal class ExternalBlobDataStoreConfiguration
public string HealthCheckFilePath { get; set; }

[Range(typeof(TimeSpan), "00:01:00", "1.00:00:00", ConvertValueInInvariantCulture = true, ParseLimitsInInvariantCulture = true)]
public TimeSpan HealthCheckFileExpiry { get; set; }
public TimeSpan HealthCheckFileExpiry { get; set; } = TimeSpan.FromMinutes(5);

/// <summary>
/// A path which is used to store blobs along a specific path in a container, serving as a prefix to the
Expand Down

0 comments on commit 23fb253

Please sign in to comment.