| 846 | } |
| 847 | |
| 848 | void redis_cluster::free_masters() |
| 849 | { |
| 850 | std::map<string, redis_node*>::iterator it = masters_.begin(); |
| 851 | for (; it != masters_.end(); ++it) { |
| 852 | it->second->clear_slaves(true); |
| 853 | delete it->second; |
| 854 | } |
| 855 | masters_.clear(); |
| 856 | } |
| 857 | |
| 858 | } // namespace acl |
| 859 |
nothing calls this directly
no test coverage detected