Start syntax_tools and compiler apps explicitly
References #72 and rabbitmq/rabbitmq-common#149. We don't use Erlang releases so need to do this manually :( Per discussion in the team.
This commit is contained in:
parent
754a149d70
commit
982018da2b
|
|
@ -27,6 +27,12 @@
|
|||
%%---------------------------------------------------------------------------
|
||||
|
||||
start() ->
|
||||
%% rabbit_common needs compiler and syntax_tools, see
|
||||
%%
|
||||
%% * https://github.com/rabbitmq/rabbitmq-erlang-client/issues/72
|
||||
%% * https://github.com/rabbitmq/rabbitmq-common/pull/149
|
||||
application:start(syntax_tools),
|
||||
application:start(compiler),
|
||||
application:start(rabbit_common),
|
||||
application:start(amqp_client).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue