(addr string)
| 508 | } |
| 509 | |
| 510 | func (p *sharedBackendConnPool) Get(addr string) *sharedBackendConn { |
| 511 | return p.pool[addr] |
| 512 | } |
| 513 | |
| 514 | func (p *sharedBackendConnPool) Retain(addr string) *sharedBackendConn { |
| 515 | if bc := p.pool[addr]; bc != nil { |
no outgoing calls
no test coverage detected