| 4660 | } |
| 4661 | |
| 4662 | static void clusterManagerPrintNotEmptyNodeError(clusterManagerNode *node, |
| 4663 | char *err) |
| 4664 | { |
| 4665 | char *msg; |
| 4666 | if (err) msg = err; |
| 4667 | else { |
| 4668 | msg = "is not empty. Either the node already knows other " |
| 4669 | "nodes (check with CLUSTER NODES) or contains some " |
| 4670 | "key in database 0."; |
| 4671 | } |
| 4672 | clusterManagerLogErr("[ERR] Node %s:%d %s\n", node->ip, node->port, msg); |
| 4673 | } |
| 4674 | |
| 4675 | static void clusterManagerPrintNotClusterNodeError(clusterManagerNode *node, |
| 4676 | char *err) |
no outgoing calls
no test coverage detected