diff options
| author | Michael Klishin <mklishin@pivotal.io> | 2016-08-04 11:48:05 -0700 |
|---|---|---|
| committer | Michael Klishin <mklishin@pivotal.io> | 2016-08-04 11:48:05 -0700 |
| commit | 87c2d6f2c0da37d8edc3d16790733305a1594075 (patch) | |
| tree | 9a6cbd917c006e00ccbf49921f7e37b115b73d9b | |
| parent | 295c7b21f6328501fb1cee7a35b879d743dca9e9 (diff) | |
| download | rabbitmq-server-git-87c2d6f2c0da37d8edc3d16790733305a1594075.tar.gz | |
Inline
| -rw-r--r-- | src/rabbit_control_main.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rabbit_control_main.erl b/src/rabbit_control_main.erl index 0e377b7c3c..ae98e51443 100644 --- a/src/rabbit_control_main.erl +++ b/src/rabbit_control_main.erl @@ -548,9 +548,8 @@ action(clear_policy, Node, [Key], Opts, Inform) -> rpc_call(Node, rabbit_policy, delete, [VHostArg, list_to_binary(Key)]); action(set_vhost_limits, Node, [Defn], Opts, Inform) -> - Msg = "Setting vhost limits for vhost ~p", VHostArg = list_to_binary(proplists:get_value(?VHOST_OPT, Opts)), - Inform(Msg, [VHostArg]), + Inform("Setting vhost limits for vhost ~p", [VHostArg]), rpc_call(Node, rabbit_vhost_limit, parse_set, [VHostArg, Defn]), ok; |
