stdlib: consider any Ping failure as fatal

refs #672
pull/896/head
Jack Christensen 2020-12-03 19:41:03 -06:00
parent 0a2b67c5c5
commit 82bac82213
1 changed files with 9 additions and 1 deletions

View File

@ -370,7 +370,15 @@ func (c *Conn) Ping(ctx context.Context) error {
return driver.ErrBadConn
}
return c.conn.Ping(ctx)
err := c.conn.Ping(ctx)
if err != nil {
// A Ping failure implies some sort of fatal state. The connection is almost certainly already closed by the
// failure, but manually close it just to be sure.
c.Close()
return driver.ErrBadConn
}
return nil
}
func (c *Conn) CheckNamedValue(*driver.NamedValue) error {