(pool params.Pool)
| 162 | } |
| 163 | |
| 164 | func (r *basePoolManager) getProviderBaseParams(pool params.Pool) common.ProviderBaseParams { |
| 165 | r.mux.Lock() |
| 166 | defer r.mux.Unlock() |
| 167 | |
| 168 | return common.ProviderBaseParams{ |
| 169 | PoolInfo: pool, |
| 170 | ControllerInfo: r.controllerInfo, |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | // isEntityPool checks if a pool belongs to this manager's entity |
| 175 | func (r *basePoolManager) isEntityPool(pool params.Pool) bool { |
no test coverage detected