DropConn closes the connection without any checks
(conn *Conn)
| 173 | |
| 174 | // DropConn closes the connection without any checks |
| 175 | func (pool *Pool) DropConn(conn *Conn) { |
| 176 | pool.closeConn(conn) |
| 177 | } |
| 178 | |
| 179 | func (pool *Pool) putConnection(connection Connection) { |
| 180 | pool.synchro.Lock() |