()
| 420 | } |
| 421 | |
| 422 | func (acbw *acBalancerWrapper) closeProducers() { |
| 423 | acbw.producersMu.Lock() |
| 424 | defer acbw.producersMu.Unlock() |
| 425 | for pb, pData := range acbw.producers { |
| 426 | pData.refs = 0 |
| 427 | pData.close() |
| 428 | delete(acbw.producers, pb) |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | // healthProducerRegisterFn is a type alias for the health producer's function |
| 433 | // for registering listeners. |
no test coverage detected