Commit 7aec8e97 authored by unknown's avatar unknown

ndb - make NdbMixRestarter a bit more verbose


storage/ndb/test/src/NdbMixRestarter.cpp:
  bit a bit more verbose
parent 60622bc2
......@@ -245,12 +245,16 @@ NdbMixRestarter::dostep(NDBT_Context* ctx, NDBT_Step* step)
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;
......
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