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