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. */
| 902 | * not including this node, that may have a PFAIL or FAIL state for this |
| 903 | * node as well. */ |
| 904 | int clusterNodeFailureReportsCount(clusterNode *node) { |
| 905 | clusterNodeCleanupFailureReports(node); |
| 906 | return listLength(node->fail_reports); |
| 907 | } |
| 908 | |
| 909 | int clusterNodeRemoveSlave(clusterNode *master, clusterNode *slave) { |
| 910 | int j; |
no test coverage detected