diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2005-09-12 16:08:16 +0200 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2005-09-12 16:08:16 +0200 |
commit | c1c2a8920cc5939715e43b615dbb2be22f09c9d3 (patch) | |
tree | 2ecbceacd74e891389a8c6b429a854ab6289dcb1 /ndb/src/mgmclient | |
parent | acf8d0f4d0f6e704960f2ffc9b03b61ba6c9c831 (diff) | |
download | mariadb-git-c1c2a8920cc5939715e43b615dbb2be22f09c9d3.tar.gz |
reengineered ndb_mgmd to use SignalSender and remove some multi user issues
Diffstat (limited to 'ndb/src/mgmclient')
-rw-r--r-- | ndb/src/mgmclient/CommandInterpreter.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ndb/src/mgmclient/CommandInterpreter.cpp b/ndb/src/mgmclient/CommandInterpreter.cpp index 124c5c18748..72debcc26a9 100644 --- a/ndb/src/mgmclient/CommandInterpreter.cpp +++ b/ndb/src/mgmclient/CommandInterpreter.cpp @@ -1430,9 +1430,8 @@ CommandInterpreter::executeEnterSingleUser(char* parameters) ndbout_c("Entering single user mode for node %d failed", nodeId); printError(); } else { - ndbout_c("Entering single user mode"); - ndbout_c("Access will be granted for API node %d only.", nodeId); - ndbout_c("Use ALL STATUS to see when single user mode has been entered."); + ndbout_c("Single user mode entered"); + ndbout_c("Access is granted for API node %d only.", nodeId); } } @@ -1445,7 +1444,7 @@ CommandInterpreter::executeExitSingleUser(char* parameters) printError(); } else { ndbout_c("Exiting single user mode in progress."); - ndbout_c("Use ALL STATUS to see when single user mode has been exited."); + ndbout_c("Use ALL STATUS or SHOW to see when single user mode has been exited."); } } |