mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
ndb - make NdbMixRestarter a bit more verbose
This commit is contained in:
parent
930f5cc234
commit
539c67e32a
1 changed files with 6 additions and 2 deletions
|
@ -245,12 +245,16 @@ loop:
|
|||
goto loop;
|
||||
|
||||
if (action == RTM_RestartNode || action == RTM_RestartNodeInitial)
|
||||
ndbout << "Restarting " << node->node_id << endl;
|
||||
ndbout << "Restarting " << node->node_id;
|
||||
else
|
||||
ndbout << "Stopping " << node->node_id << endl;
|
||||
ndbout << "Stopping " << node->node_id;
|
||||
|
||||
bool initial =
|
||||
action == RTM_RestartNodeInitial || action == RTM_StopNodeInitial;
|
||||
|
||||
if (initial)
|
||||
ndbout << " inital";
|
||||
ndbout << endl;
|
||||
|
||||
if (restartOneDbNode(node->node_id, initial, true, true))
|
||||
return NDBT_FAILED;
|
||||
|
|
Loading…
Reference in a new issue