mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
19 lines
534 B
Go
19 lines
534 B
Go
package clientinterceptors
|
|
|
|
import (
|
|
"context"
|
|
"path"
|
|
|
|
"github.com/tal-tech/go-zero/core/breaker"
|
|
"github.com/tal-tech/go-zero/zrpc/internal/codes"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
func BreakerInterceptor(ctx context.Context, method string, req, reply interface{},
|
|
cc *grpc.ClientConn, invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {
|
|
breakerName := path.Join(cc.Target(), method)
|
|
return breaker.DoWithAcceptable(breakerName, func() error {
|
|
return invoker(ctx, method, req, reply, cc, opts...)
|
|
}, codes.Acceptable)
|
|
}
|