We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi !
PR #238 introduced support for [:rabbitmq][:clustering][:cluster_nodes] attribute which is used in cluster LWRP and recipe.
[:rabbitmq][:clustering][:cluster_nodes]
cluster
But if you look at rabbitmq.config.erb template both old ['cluster_disk_nodes'] and ['clustering']['cluster_nodes'] attributes are used :
['cluster_disk_nodes']
['clustering']['cluster_nodes']
{rabbit, [ <% if node['rabbitmq']['cluster'] && node['rabbitmq']['cluster_disk_nodes'] -%> <%if node['rabbitmq']['clustering']['use_auto_clustering']-%> {cluster_nodes, {[<%= node['rabbitmq']['clustering']['cluster_nodes'].map { |n| "'#{n['name']}'"}.join(',') %>], disc}}, {cluster_partition_handling,<%= node['rabbitmq']['cluster_partition_handling'] %>}, <% end %> <% end %>
As is, it seems we need to provide values for both attibutes to generate a configuration with cluster_nodes value.
The text was updated successfully, but these errors were encountered:
This issue has been fixed in PR #340
Sorry, something went wrong.
No branches or pull requests
Hi !
PR #238 introduced support for
[:rabbitmq][:clustering][:cluster_nodes]
attribute which is used incluster
LWRP and recipe.But if you look at rabbitmq.config.erb template both old
['cluster_disk_nodes']
and['clustering']['cluster_nodes']
attributes are used :As is, it seems we need to provide values for both attibutes to generate a configuration with cluster_nodes value.
The text was updated successfully, but these errors were encountered: