Skip to content

Commit

Permalink
Update backend/connpool.go
Browse files Browse the repository at this point in the history
Co-authored-by: Copilot <[email protected]>
  • Loading branch information
fanyang01 and Copilot authored Dec 19, 2024
1 parent 942dc65 commit 1f5277c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/connpool.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func (p *ConnectionPool) CloseConn(id uint32) error {
// the pool and will be closed instead.
return driver.ErrBadConn
}); err != nil && !errors.Is(err, driver.ErrBadConn) {
logrus.WithError(err).Warn("Failed to close connection")
logrus.WithError(err).Warn("Failed to close connection during Raw function call")
return err
}
if err := conn.Close(); err != nil && !errors.Is(err, stdsql.ErrConnDone) {
Expand Down

0 comments on commit 1f5277c

Please sign in to comment.