| 1234 | |
| 1235 | |
| 1236 | void HierarchicalAllocatorProcess::activateSlave( |
| 1237 | const SlaveID& slaveId) |
| 1238 | { |
| 1239 | CHECK(initialized); |
| 1240 | |
| 1241 | Slave& slave = *CHECK_NOTNONE(getSlave(slaveId)); |
| 1242 | slave.activated = true; |
| 1243 | |
| 1244 | LOG(INFO) << "Agent " << slaveId << " reactivated"; |
| 1245 | } |
| 1246 | |
| 1247 | |
| 1248 | void HierarchicalAllocatorProcess::deactivateSlave( |
nothing calls this directly
no test coverage detected