summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rabbit_control_main.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_control_main.erl b/src/rabbit_control_main.erl
index cb4e6315ce..fe5e77093f 100644
--- a/src/rabbit_control_main.erl
+++ b/src/rabbit_control_main.erl
@@ -661,8 +661,8 @@ require_mnesia_stopped(Node, Fun) ->
case Fun() of
{error, mnesia_unexpectedly_running} ->
{error_string, rabbit_misc:format(
- " mnesia is still running on node ~p.
- It need to be stopped with stop_app first", [Node])};
+ " Mnesia is still running on node ~p.
+ Please stop the node with rabbitmqctl stop_app first.", [Node])};
Other -> Other
end.