()
| 338 | } |
| 339 | |
| 340 | func (m *Smap) CountActiveProxies() (count int) { |
| 341 | for _, t := range m.Pmap { |
| 342 | if !t.IsAnySet(NodeFlagsMaintDecomm) { |
| 343 | count++ |
| 344 | } |
| 345 | } |
| 346 | return |
| 347 | } |
| 348 | |
| 349 | func (m *Smap) GetProxy(pid string) *Snode { |
| 350 | psi, ok := m.Pmap[pid] |