fix(conn): releaseConn should be executed correctly

Signed-off-by: monkey92t <golang@88.com>
This commit is contained in:
monkey92t 2023-01-28 15:44:06 +08:00
parent 805bfc2c60
commit 21e1954745
2 changed files with 22 additions and 9 deletions

View File

@ -1287,9 +1287,13 @@ func (c *ClusterClient) processPipelineNode(
return err return err
} }
err = c.processPipelineNodeConn(ctx, node, cn, cmds, failedCmds) var processErr error
node.Client.releaseConn(ctx, cn, err) defer func() {
return err node.Client.releaseConn(ctx, cn, processErr)
}()
processErr = c.processPipelineNodeConn(ctx, node, cn, cmds, failedCmds)
return processErr
}) })
} }
@ -1464,9 +1468,13 @@ func (c *ClusterClient) processTxPipelineNode(
return err return err
} }
err = c.processTxPipelineNodeConn(ctx, node, cn, cmds, failedCmds) var processErr error
node.Client.releaseConn(ctx, cn, err) defer func() {
return err node.Client.releaseConn(ctx, cn, processErr)
}()
processErr = c.processTxPipelineNodeConn(ctx, node, cn, cmds, failedCmds)
return processErr
}) })
} }

View File

@ -342,9 +342,14 @@ func (c *baseClient) withConn(
return err return err
} }
err = fn(ctx, cn) var fnErr error
c.releaseConn(ctx, cn, err) defer func() {
return err c.releaseConn(ctx, cn, fnErr)
}()
fnErr = fn(ctx, cn)
return fnErr
} }
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) {