Skip to content
Snippets Groups Projects
Commit 75ca0449 authored by Ian Luo's avatar Ian Luo
Browse files

add defensive check for client returned from selectSession

parent a8a803d8
No related branches found
No related tags found
No related merge requests found
......@@ -206,8 +206,10 @@ func (c *Client) Request(request *remoting.Request, timeout time.Duration, respo
// isAvailable returns true if the connection is available, or it can be re-established.
func (c *Client) IsAvailable() bool {
_, _, err := c.selectSession(c.addr)
return err == nil
client, _, err := c.selectSession(c.addr)
return err == nil &&
// defensive check
client != nil
}
func (c *Client) selectSession(addr string) (*gettyRPCClient, getty.Session, error) {
......
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