| 2914 | } |
| 2915 | |
| 2916 | static void clusterManagerNodeResetSlots(clusterManagerNode *node) { |
| 2917 | memset(node->slots, 0, sizeof(node->slots)); |
| 2918 | node->slots_count = 0; |
| 2919 | } |
| 2920 | |
| 2921 | /* Call "INFO" redis command on the specified node and return the reply. */ |
| 2922 | static redisReply *clusterManagerGetNodeRedisInfo(clusterManagerNode *node, |
no test coverage detected