From 284a4ee0a3d5fd7146df2d0973e5a97aa59eb46d Mon Sep 17 00:00:00 2001 From: ben-toogood Date: Mon, 16 Mar 2020 09:53:15 +0000 Subject: [PATCH] grpc client error fix (#1351) Co-authored-by: Ben Toogood --- grpc.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/grpc.go b/grpc.go index c090065..df1de99 100644 --- a/grpc.go +++ b/grpc.go @@ -445,6 +445,10 @@ func (g *grpcClient) Call(ctx context.Context, req client.Request, rsp interface // call backoff first. Someone may want an initial start delay t, err := callOpts.Backoff(ctx, req, i) if err != nil { + if verr, ok := err.(*errors.Error); ok { + return verr + } + return errors.InternalServerError("go.micro.client", err.Error()) }