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 12:11:23 +0000 |
| commit | 3bb8bade8022db0e860f4ab084a02f5b571d0067 (patch) | |
| tree | ae0059cd0978f55ae06c957cf01e9c49d6e552d2 | |
| parent | 21e8b335950b6871c71e5e3de54ea249fe4322f9 (diff) | |
| download | rabbitmq-server-git-3bb8bade8022db0e860f4ab084a02f5b571d0067.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
| -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 babaf4fd4e..f5bc3dd3f1 100644 --- a/src/rabbit_control_main.erl +++ b/src/rabbit_control_main.erl @@ -282,7 +282,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) -> |
