()
| 1124 | } |
| 1125 | |
| 1126 | func (cc *ClientConn) healthCheckConfig() *healthCheckConfig { |
| 1127 | cc.mu.RLock() |
| 1128 | defer cc.mu.RUnlock() |
| 1129 | if cc.sc == nil { |
| 1130 | return nil |
| 1131 | } |
| 1132 | return cc.sc.healthCheckConfig |
| 1133 | } |
| 1134 | |
| 1135 | func (cc *ClientConn) applyServiceConfigAndBalancer(sc *ServiceConfig, configSelector iresolver.ConfigSelector) { |
| 1136 | if sc == nil { |
no outgoing calls
no test coverage detected