(attr *attributes.Attributes)
| 126 | } |
| 127 | |
| 128 | func getConfigKey(attr *attributes.Attributes) (string, bool) { |
| 129 | v := attr.Value(configKey{}) |
| 130 | name, ok := v.(string) |
| 131 | return name, ok |
| 132 | } |
| 133 | |
| 134 | func (b *testConfigBalancer) UpdateClientConnState(s balancer.ClientConnState) error { |
| 135 | c, ok := s.BalancerConfig.(stringBalancerConfig) |
no test coverage detected