(s connectivity.State)
| 296 | } |
| 297 | |
| 298 | func newHealthData(s connectivity.State) *healthData { |
| 299 | return &healthData{ |
| 300 | connectivityState: s, |
| 301 | closeHealthProducer: func() {}, |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | // updateState is invoked by grpc to push a subConn state update to the |
| 306 | // underlying balancer. |
no outgoing calls
no test coverage detected