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
commit6c358592c74a2da74a84920a4eec57f8b99a162a (patch)
tree823041e333fa908d557206acb390224e84138f8f
parentb6bc816d887115d48e9b524061373d6fb662db88 (diff)
downloadrabbitmq-server-git-6c358592c74a2da74a84920a4eec57f8b99a162a.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 d9e547e159..902fd13d66 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.
%%----------------------------------------------------------------------------