Return the number of external nodes that believe 'node' is failing, * not including this node, that may have a PFAIL or FAIL state for this * node as well. */
| 941 | * not including this node, that may have a PFAIL or FAIL state for this |
| 942 | * node as well. */ |
| 943 | int clusterNodeFailureReportsCount(clusterNode *node) { |
| 944 | clusterNodeCleanupFailureReports(node); |
| 945 | return listLength(node->fail_reports); |
| 946 | } |
| 947 | |
| 948 | int clusterNodeRemoveSlave(clusterNode *master, clusterNode *slave) { |
| 949 | int j; |
no test coverage detected