summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandru Scvortov <alexandru@rabbitmq.com>2010-09-16 10:58:38 +0100
committerAlexandru Scvortov <alexandru@rabbitmq.com>2010-09-16 10:58:38 +0100
commitff3b2320ad304a7d125db914bcdf53c43ef05434 (patch)
treef293dc263c25debd9bc4cba47be9b77aec0fbac8
parent042d2778378568b4d4092d29f09fe473ae7ee18b (diff)
downloadrabbitmq-server-git-ff3b2320ad304a7d125db914bcdf53c43ef05434.tar.gz
exref on script activation
That is, warnings-not-errors-on-by-default. For instance, starting the server with bql installed throws the following warnings on startup: Activating RabbitMQ plugins ... *WARNING* Undefined function rfc4627:decode/1 *WARNING* Undefined function rfc4627:encode/1 *WARNING* Undefined function rfc4627:get_field/2
-rw-r--r--src/rabbit_plugin_activator.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_plugin_activator.erl b/src/rabbit_plugin_activator.erl
index b23776cd74..c38ef8d2f8 100644
--- a/src/rabbit_plugin_activator.erl
+++ b/src/rabbit_plugin_activator.erl
@@ -90,7 +90,7 @@ start() ->
%% Compile the script
ScriptFile = RootName ++ ".script",
- case systools:make_script(RootName, [local, silent]) of
+ case systools:make_script(RootName, [local, silent, exref]) of
{ok, Module, Warnings} ->
%% This gets lots of spurious no-source warnings when we
%% have .ez files, so we want to supress them to prevent