unwrappingPicker unwraps SubConns because the channel expects SubConns to be addrConns.
| 2813 | // unwrappingPicker unwraps SubConns because the channel expects SubConns to be |
| 2814 | // addrConns. |
| 2815 | type unwrappingPicker struct { |
| 2816 | balancer.Picker |
| 2817 | } |
| 2818 | |
| 2819 | func (pw *unwrappingPicker) Pick(info balancer.PickInfo) (balancer.PickResult, error) { |
| 2820 | pr, err := pw.Picker.Pick(info) |
nothing calls this directly
no outgoing calls
no test coverage detected