Skip to content

Commit

Permalink
Add default for health file path (#3347)
Browse files Browse the repository at this point in the history
add default for health file path
  • Loading branch information
jnlycklama committed Feb 6, 2024
1 parent 8a0247d commit 65ff680
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal class ExternalBlobDataStoreConfiguration
// use for local testing with Azurite
public string ContainerName { get; set; }

public string HealthCheckFilePath { get; set; }
public string HealthCheckFilePath { get; set; } = "healthCheck/health";

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

0 comments on commit 65ff680

Please sign in to comment.