Commit 32183e74 authored by unknown's avatar unknown

[PATCH] BUG#29509 ndb_mgm help needs to list the -a option for DN restart

Index: ndb/storage/ndb/src/mgmclient/CommandInterpreter.cpp
===================================================================


storage/ndb/src/mgmclient/CommandInterpreter.cpp:
  BUG#29509 ndb_mgm help needs to list the -a option for DN restart
parent 861bca5b
...@@ -269,8 +269,8 @@ static const char* helpText = ...@@ -269,8 +269,8 @@ static const char* helpText =
"CLUSTERLOG TOGGLE [<severity>] ... Toggle severity filter on/off\n" "CLUSTERLOG TOGGLE [<severity>] ... Toggle severity filter on/off\n"
"CLUSTERLOG INFO Print cluster log information\n" "CLUSTERLOG INFO Print cluster log information\n"
"<id> START Start data node (started with -n)\n" "<id> START Start data node (started with -n)\n"
"<id> RESTART [-n] [-i] Restart data or management server node\n" "<id> RESTART [-n] [-i] [-a] Restart data or management server node\n"
"<id> STOP Stop data or management server node\n" "<id> STOP [-a] Stop data or management server node\n"
"ENTER SINGLE USER MODE <id> Enter single user mode\n" "ENTER SINGLE USER MODE <id> Enter single user mode\n"
"EXIT SINGLE USER MODE Exit single user mode\n" "EXIT SINGLE USER MODE Exit single user mode\n"
"<id> STATUS Print status\n" "<id> STATUS Print status\n"
...@@ -434,7 +434,7 @@ static const char* helpTextRestart = ...@@ -434,7 +434,7 @@ static const char* helpTextRestart =
" NDB Cluster -- Management Client -- Help for RESTART command\n" " NDB Cluster -- Management Client -- Help for RESTART command\n"
"---------------------------------------------------------------------------\n" "---------------------------------------------------------------------------\n"
"RESTART Restart data or management server node\n\n" "RESTART Restart data or management server node\n\n"
"<id> RESTART [-n] [-i] \n" "<id> RESTART [-n] [-i] [-a]\n"
" Restart the data or management node <id>(or All data nodes).\n\n" " Restart the data or management node <id>(or All data nodes).\n\n"
" -n (--nostart) restarts the node but does not\n" " -n (--nostart) restarts the node but does not\n"
" make it join the cluster. Use '<id> START' to\n" " make it join the cluster. Use '<id> START' to\n"
...@@ -445,6 +445,7 @@ static const char* helpTextRestart = ...@@ -445,6 +445,7 @@ static const char* helpTextRestart =
" in the same node group during start up.\n\n" " in the same node group during start up.\n\n"
" Consult the documentation before using -i.\n\n" " Consult the documentation before using -i.\n\n"
" INCORRECT USE OF -i WILL CAUSE DATA LOSS!\n" " INCORRECT USE OF -i WILL CAUSE DATA LOSS!\n"
" -a Aborts the node, not syncing GCP.\n"
; ;
static const char* helpTextStop = static const char* helpTextStop =
...@@ -452,10 +453,11 @@ static const char* helpTextStop = ...@@ -452,10 +453,11 @@ static const char* helpTextStop =
" NDB Cluster -- Management Client -- Help for STOP command\n" " NDB Cluster -- Management Client -- Help for STOP command\n"
"---------------------------------------------------------------------------\n" "---------------------------------------------------------------------------\n"
"STOP Stop data or management server node\n\n" "STOP Stop data or management server node\n\n"
"<id> STOP Stop the data or management server node <id>.\n\n" "<id> STOP [-a] Stop the data or management server node <id>.\n\n"
" ALL STOP will just stop all data nodes.\n\n" " ALL STOP will just stop all data nodes.\n\n"
" If you desire to also shut down management servers,\n" " If you desire to also shut down management servers,\n"
" use SHUTDOWN instead.\n" " use SHUTDOWN instead.\n"
" -a Aborts the node, not syncing GCP.\n"
; ;
static const char* helpTextEnterSingleUserMode = static const char* helpTextEnterSingleUserMode =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment