diff --git a/client/rpc_client.go b/client/rpc_client.go index 8ed51f07..681e6298 100644 --- a/client/rpc_client.go +++ b/client/rpc_client.go @@ -7,6 +7,8 @@ import ( "sync" "time" + "sync/atomic" + "github.com/micro/go-micro/broker" "github.com/micro/go-micro/codec" "github.com/micro/go-micro/errors" @@ -14,7 +16,6 @@ import ( "github.com/micro/go-micro/registry" "github.com/micro/go-micro/selector" "github.com/micro/go-micro/transport" - "sync/atomic" ) type rpcClient struct { @@ -322,9 +323,9 @@ func (r *rpcClient) Call(ctx context.Context, request Request, response interfac var gerr error for i := 0; i <= callOpts.Retries; i++ { - go func() { + go func(i int) { ch <- call(i) - }() + }(i) select { case <-ctx.Done():