forked from mirror/redis
fix: capture error correctly in withConn
This commit is contained in:
parent
f1d6bc91b7
commit
d1bfaba549
8
redis.go
8
redis.go
|
@ -288,11 +288,9 @@ func (c *baseClient) withConn(
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
defer func() {
|
err = fn(ctx, cn)
|
||||||
c.releaseConn(ctx, cn, err)
|
c.releaseConn(ctx, cn, err)
|
||||||
}()
|
return err
|
||||||
|
|
||||||
return fn(ctx, cn)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *baseClient) dial(ctx context.Context, network, addr string) (net.Conn, error) {
|
func (c *baseClient) dial(ctx context.Context, network, addr string) (net.Conn, error) {
|
||||||
|
|
Loading…
Reference in New Issue