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
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class CircuitBreakerStrategyOptions<TResult> : ResilienceStrategyOptions
/// for statistics to be considered significant and the circuit-breaker to come into action.
/// </summary>
/// <value>
/// The default value is 0.1 (i.e. 10%). The value must be 2 or greater.
/// The default value is 100. The value must be 2 or greater.
/// </value>
[Range(CircuitBreakerConstants.MinimumValidThroughput, int.MaxValue)]
public int MinimumThroughput { get; set; } = CircuitBreakerConstants.DefaultMinimumThroughput;
Expand Down