fix bug need pass the variable as a parameter to the anonymous function

This commit is contained in:
lpxxn 2019-05-31 14:24:37 +08:00
parent 9a1115001c
commit a86c26d485

View File

@ -467,10 +467,10 @@ func (r *rpcClient) Stream(ctx context.Context, request Request, opts ...CallOpt
var grr error
for i := 0; i <= callOpts.Retries; i++ {
go func() {
go func(i int) {
s, err := call(i)
ch <- response{s, err}
}()
}(i)
select {
case <-ctx.Done():