summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2011-10-05 16:54:03 +0100
committerSimon MacMullen <simon@rabbitmq.com>2011-10-05 16:54:03 +0100
commit6eff8be926c6cc45cec05a360e68234581e7194d (patch)
tree823041e333fa908d557206acb390224e84138f8f
parent77fd8fde4c0e280bcd58ba3ae8e62cc7994ae0ff (diff)
downloadrabbitmq-server-6eff8be926c6cc45cec05a360e68234581e7194d.tar.gz
Slightly better message
-rw-r--r--src/rabbit_plugins.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_plugins.erl b/src/rabbit_plugins.erl
index d9e547e1..902fd13d 100644
--- a/src/rabbit_plugins.erl
+++ b/src/rabbit_plugins.erl
@@ -110,7 +110,7 @@ action(enable, ToEnable0, _Opts, PluginsFile, PluginsDir) ->
print_list("The following plugins have been enabled:",
NewImplicitlyEnabled -- ImplicitlyEnabled),
io:format("Plugin configuration has changed. "
- "You should restart RabbitMQ.~n")
+ "Restart RabbitMQ for changes to take effect.~n")
end;
action(disable, ToDisable0, _Opts, PluginsFile, PluginsDir) ->
@@ -140,7 +140,7 @@ action(disable, ToDisable0, _Opts, PluginsFile, PluginsDir) ->
ImplicitlyEnabled -- NewImplicitlyEnabled),
write_enabled_plugins(PluginsFile, NewEnabled),
io:format("Plugin configuration has changed. "
- "You should restart RabbitMQ.~n")
+ "Restart RabbitMQ for changes to take effect.~n")
end.
%%----------------------------------------------------------------------------