From a14bd309a9c6f549873e21858bf7ead56d364841 Mon Sep 17 00:00:00 2001 From: firefantasy <1161813899@qq.com> Date: Sat, 17 Oct 2020 22:55:36 +0800 Subject: [PATCH] to correct breaker interface annotation (#136) --- core/breaker/breaker.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/breaker/breaker.go b/core/breaker/breaker.go index 24fa684e..3608cfc2 100644 --- a/core/breaker/breaker.go +++ b/core/breaker/breaker.go @@ -41,7 +41,7 @@ type ( Do(req func() error) error // DoWithAcceptable runs the given request if the netflixBreaker accepts it. - // Do returns an error instantly if the netflixBreaker rejects the request. + // DoWithAcceptable returns an error instantly if the netflixBreaker rejects the request. // If a panic occurs in the request, the netflixBreaker handles it as an error // and causes the same panic again. // acceptable checks if it's a successful call, even if the err is not nil. @@ -54,7 +54,7 @@ type ( DoWithFallback(req func() error, fallback func(err error) error) error // DoWithFallbackAcceptable runs the given request if the netflixBreaker accepts it. - // DoWithFallback runs the fallback if the netflixBreaker rejects the request. + // DoWithFallbackAcceptable runs the fallback if the netflixBreaker rejects the request. // If a panic occurs in the request, the netflixBreaker handles it as an error // and causes the same panic again. // acceptable checks if it's a successful call, even if the err is not nil.