parent
94480c68d6
commit
92c4cb86c1
3 changed files with 19 additions and 19 deletions
@ -0,0 +1,18 @@ |
|||||||
|
const SUBNODE_STATUS_MESSAGE_MAP: ReadonlyMap<string, string> = new Map([ |
||||||
|
['message_0222', 'The subnode is in an unknown state.'], |
||||||
|
['message_0223', 'The subnode is a full cluster member.'], |
||||||
|
[ |
||||||
|
'message_0224', |
||||||
|
'The subnode is coming online; the cluster resource manager is running (step 2/3).', |
||||||
|
], |
||||||
|
[ |
||||||
|
'message_0225', |
||||||
|
'The subnode is coming online; the subnode is a consensus cluster member (step 1/3).', |
||||||
|
], |
||||||
|
[ |
||||||
|
'message_0226', |
||||||
|
'The subnode has booted, but it is not (yet) joining the cluster.', |
||||||
|
], |
||||||
|
]); |
||||||
|
|
||||||
|
export default SUBNODE_STATUS_MESSAGE_MAP; |
@ -1,18 +0,0 @@ |
|||||||
const NODE_STATUS_MESSAGE_MAP: ReadonlyMap<string, string> = new Map([ |
|
||||||
['message_0222', 'The node is in an unknown state.'], |
|
||||||
['message_0223', 'The node is a full cluster member.'], |
|
||||||
[ |
|
||||||
'message_0224', |
|
||||||
'The node is coming online; the cluster resource manager is running (step 2/3).', |
|
||||||
], |
|
||||||
[ |
|
||||||
'message_0225', |
|
||||||
'The node is coming online; the node is a consensus cluster member (step 1/3).', |
|
||||||
], |
|
||||||
[ |
|
||||||
'message_0226', |
|
||||||
'The node has booted, but it is not (yet) joining the cluster.', |
|
||||||
], |
|
||||||
]); |
|
||||||
|
|
||||||
export default NODE_STATUS_MESSAGE_MAP; |
|
Loading…
Reference in new issue