diff options
| author | Gerhard Lazu <gerhard@lazu.co.uk> | 2016-12-14 12:06:19 +0000 |
|---|---|---|
| committer | Gerhard Lazu <gerhard@lazu.co.uk> | 2016-12-14 18:59:41 +0000 |
| commit | 97f3f2a370bea2efaa05a140cfb27be788dba27b (patch) | |
| tree | 5b1e59568e38b5ed100e03303bec7457852120a6 /src | |
| parent | 4d3d1705e835e2bad9b82ff10bbaee6f8130a2a9 (diff) | |
| download | rabbitmq-server-git-97f3f2a370bea2efaa05a140cfb27be788dba27b.tar.gz | |
Be more specific about what is being stopped on `stop_app`
Already implemented in the new CLI, planned to ship as of 3.7.0
rabbitmq/rabbitmq-server#1043
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_control_main.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_control_main.erl b/src/rabbit_control_main.erl index 8c245892b7..e306afc198 100644 --- a/src/rabbit_control_main.erl +++ b/src/rabbit_control_main.erl @@ -277,7 +277,7 @@ action(stop, Node, Args, _Opts, Inform) -> Res; action(stop_app, Node, [], _Opts, Inform) -> - Inform("Stopping node ~p", [Node]), + Inform("Stopping rabbit application on node ~p", [Node]), call(Node, {rabbit, stop, []}); action(start_app, Node, [], _Opts, Inform) -> |
