summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Watson <tim@rabbitmq.com>2012-05-16 16:49:11 +0100
committerTim Watson <tim@rabbitmq.com>2012-05-16 16:49:11 +0100
commit13657010f4d829baebc0be7035feed8c596a8e6e (patch)
tree51455eaa3be33079e829453115dd733068959674
parent484fb54209baaaeba7b05a701cc0701f0612811d (diff)
downloadrabbitmq-server-13657010f4d829baebc0be7035feed8c596a8e6e.tar.gz
remove message about re-installing windows service after plugin changes
-rw-r--r--src/rabbit_control_main.erl2
-rw-r--r--src/rabbit_plugins_main.erl11
2 files changed, 2 insertions, 11 deletions
diff --git a/src/rabbit_control_main.erl b/src/rabbit_control_main.erl
index 2878e8e2..d33195ad 100644
--- a/src/rabbit_control_main.erl
+++ b/src/rabbit_control_main.erl
@@ -419,7 +419,7 @@ while_process_is_alive(Node, Pid, Activity) ->
case process_up(Pid) of
true -> case Activity() of
true -> ok;
- Other -> timer:sleep(?EXTERNAL_CHECK_INTERVAL),
+ _Other -> timer:sleep(?EXTERNAL_CHECK_INTERVAL),
while_process_is_alive(Node, Pid, Activity)
end;
false -> {error, process_not_running}
diff --git a/src/rabbit_plugins_main.erl b/src/rabbit_plugins_main.erl
index a27ad986..0500d2c1 100644
--- a/src/rabbit_plugins_main.erl
+++ b/src/rabbit_plugins_main.erl
@@ -258,14 +258,5 @@ maybe_warn_mochiweb(Enabled) ->
report_change() ->
io:format("Plugin configuration has changed. "
- "Restart RabbitMQ for changes to take effect.~n"),
- case os:type() of
- {win32, _OsName} ->
- io:format("If you have RabbitMQ running as a service then you must"
- " reinstall by running~n rabbitmq-service.bat stop~n"
- " rabbitmq-service.bat install~n"
- " rabbitmq-service.bat start~n~n");
- _ ->
- ok
- end.
+ "Restart RabbitMQ for changes to take effect.~n").