Skip to content
Snippets Groups Projects
Commit ef691c57 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Support HiPE (High-Performance Erlang) in RabbitMQ role"

parents 29614fd4 108d60cb
No related branches found
No related tags found
No related merge requests found
......@@ -443,6 +443,7 @@ enable_kibana: "{{ 'yes' if enable_central_logging | bool else 'no' }}"
####################
# RabbitMQ options
####################
rabbitmq_hipe_compile: "no"
rabbitmq_user: "openstack"
rabbitmq_version: "rabbitmq_server-3.6/plugins/rabbitmq_clusterer-3.6.x.ez/rabbitmq_clusterer-3.6.x-667f92b0/ebin"
outward_rabbitmq_user: "openstack"
......
......@@ -5,6 +5,9 @@
{inet_dist_listen_max, {{ role_rabbitmq_cluster_port }}}
]},
{rabbit, [
{% if rabbitmq_hipe_compile|bool %}
{hipe_compile, true},
{% endif %}
{tcp_listeners, [
{"{{ api_interface_address }}", {{ role_rabbitmq_port }}}
]},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment