(ctx context.Context, cn *Conn)
| 1200 | } |
| 1201 | |
| 1202 | func (p *ConnPool) Put(ctx context.Context, cn *Conn) { |
| 1203 | p.putConn(ctx, cn, true) |
| 1204 | } |
| 1205 | |
| 1206 | // putConnWithoutTurn is an internal method that puts a connection back to the pool |
| 1207 | // without freeing a turn. This is used when returning a rejected connection from |