summaryrefslogtreecommitdiff
path: root/ndb/src
diff options
context:
space:
mode:
authorunknown <tomas@whalegate.ndb.mysql.com>2007-09-12 13:53:32 +0200
committerunknown <tomas@whalegate.ndb.mysql.com>2007-09-12 13:53:32 +0200
commit2ef5838c90dda27a8b403a29f47e22dbcc4ec064 (patch)
tree599693afaded9003d9f558c19658cb703c8c2e7c /ndb/src
parente116b31f96fe5e82a5b20fe959153915396809b1 (diff)
downloadmariadb-git-2ef5838c90dda27a8b403a29f47e22dbcc4ec064.tar.gz
BUG#23354 revert
Diffstat (limited to 'ndb/src')
-rw-r--r--ndb/src/common/debugger/EventLogger.cpp2
-rw-r--r--ndb/src/mgmclient/CommandInterpreter.cpp10
2 files changed, 3 insertions, 9 deletions
diff --git a/ndb/src/common/debugger/EventLogger.cpp b/ndb/src/common/debugger/EventLogger.cpp
index c3bdb18dc06..6280d5bb9b3 100644
--- a/ndb/src/common/debugger/EventLogger.cpp
+++ b/ndb/src/common/debugger/EventLogger.cpp
@@ -91,6 +91,8 @@ void getRestartAction(Uint32 action, BaseString &str)
if (action == 0)
return;
str.appfmt(", restarting");
+ if (action & 2)
+ str.appfmt(", no start");
if (action & 4)
str.appfmt(", initial");
}
diff --git a/ndb/src/mgmclient/CommandInterpreter.cpp b/ndb/src/mgmclient/CommandInterpreter.cpp
index 8d3e046c9ad..1036461d404 100644
--- a/ndb/src/mgmclient/CommandInterpreter.cpp
+++ b/ndb/src/mgmclient/CommandInterpreter.cpp
@@ -2168,15 +2168,7 @@ CommandInterpreter::executeRestart(Vector<BaseString> &command_list,
ndbout << "Node";
for (int i= 0; i < no_of_nodes; i++)
ndbout << " " << node_ids[i];
- ndbout_c(": Is being restarted");
-
- ndbout << "Node";
- for (int i= 0; i < no_of_nodes; i++)
- ndbout << " " << node_ids[i];
- if (nostart)
- ndbout_c(": No start");
- else
- ndbout_c(": Is rejoining the cluster");
+ ndbout_c(" is being restarted");
}
if(need_disconnect)
disconnect();