|
@@ -8,15 +8,12 @@ import (
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc"
|
|
)
|
|
)
|
|
|
|
|
|
-const defaultTimeout = time.Second * 2
|
|
|
|
-
|
|
|
|
func TimeoutInterceptor(timeout time.Duration) grpc.UnaryClientInterceptor {
|
|
func TimeoutInterceptor(timeout time.Duration) grpc.UnaryClientInterceptor {
|
|
- if timeout <= 0 {
|
|
|
|
- timeout = defaultTimeout
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
return func(ctx context.Context, method string, req, reply interface{}, cc *grpc.ClientConn,
|
|
return func(ctx context.Context, method string, req, reply interface{}, cc *grpc.ClientConn,
|
|
invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {
|
|
invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {
|
|
|
|
+ if timeout == 0 {
|
|
|
|
+ return invoker(ctx, method, req, reply, cc, opts...)
|
|
|
|
+ }
|
|
ctx, cancel := contextx.ShrinkDeadline(ctx, timeout)
|
|
ctx, cancel := contextx.ShrinkDeadline(ctx, timeout)
|
|
defer cancel()
|
|
defer cancel()
|
|
return invoker(ctx, method, req, reply, cc, opts...)
|
|
return invoker(ctx, method, req, reply, cc, opts...)
|