Skip to content
Snippets Groups Projects
Commit 5b5713e0 authored by pantianying's avatar pantianying
Browse files

Modify code according to code review

parent ba10592c
No related branches found
No related tags found
No related merge requests found
......@@ -289,13 +289,15 @@ func (p *gettyRPCClientPool) close() {
}
func (p *gettyRPCClientPool) getGettyRpcClient(protocol, addr string) (*gettyRPCClient, error) {
if conn, err := p.selectGettyRpcClient(protocol, addr); err != nil {
return nil, err
} else if conn != nil {
return conn, nil
var (
conn *gettyRPCClient
err error
)
if conn, err = p.selectGettyRpcClient(protocol, addr); err == nil && conn == nil {
// create new conn
return newGettyRPCClientConn(p, protocol, addr)
}
// create new conn
return newGettyRPCClientConn(p, protocol, addr)
return conn, err
}
func (p *gettyRPCClientPool) selectGettyRpcClient(protocol, addr string) (*gettyRPCClient, error) {
p.Lock()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment