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
commitba113a6c437d2a31f38a0e09c7d0b1ed8744c4f8 (patch)
treef293dc263c25debd9bc4cba47be9b77aec0fbac8
parent9df14122325caa6acf00e30de2e2062089a5dff1 (diff)
downloadrabbitmq-server-bug22141.tar.gz
exref on script activationbug22141
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 b23776cd..c38ef8d2 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