Exemple #1
0
func (pool *connectionPool) Release(conn connection.Connection) {
	select {
	case pool.connections <- conn:
	default:
		conn.Close()
	}
}