mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-04-04 05:33:33 +03:00
Merge 55615d2cdf
into f978e42036
This commit is contained in:
commit
2b3c701e30
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ func Breaker(c Circuit, failureThreshold uint32) Circuit {
|
|||
|
||||
return func(ctx context) error {
|
||||
if cnt.ConsecutiveFailures() >= failureThreshold {
|
||||
canRetry := func(cnt Counter) {
|
||||
canRetry := func(cnt Counter) bool {
|
||||
backoffLevel := Cnt.ConsecutiveFailures() - failureThreshold
|
||||
|
||||
// Calculates when should the circuit breaker resume propagating requests
|
||||
|
|
Loading…
Add table
Reference in a new issue