| 2944 | } |
| 2945 | |
| 2946 | void clusterManagerShowNodes(void) { |
| 2947 | listIter li; |
| 2948 | listNode *ln; |
| 2949 | listRewind(cluster_manager.nodes, &li); |
| 2950 | while ((ln = listNext(&li)) != NULL) { |
| 2951 | clusterManagerNode *node = ln->value; |
| 2952 | sds info = clusterManagerNodeInfo(node, 0); |
| 2953 | printf("%s\n", (char *) info); |
| 2954 | sdsfree(info); |
| 2955 | } |
| 2956 | } |
| 2957 | |
| 2958 | static void clusterManagerShowClusterInfo(void) { |
| 2959 | int masters = 0; |
no test coverage detected