Handle unhandled NodeStatus in switch statement

This commit is contained in:
Ian Barwick
2019-02-15 19:30:45 +09:00
parent 3a5a4388c7
commit 85a97c933f

View File

@@ -5957,6 +5957,8 @@ print_node_status(NodeStatus node_status)
return "DOWN";
case NODE_STATUS_UNCLEAN_SHUTDOWN:
return "UNCLEAN_SHUTDOWN";
case NODE_STATUS_REJECTED:
return "REJECTED";
}
return "UNIDENTIFIED_STATUS";