Fixed murano manifest which turned rabbit_hosts string into an array.

This set wrong rabbit_hosts setting in murano.conf

Change-Id: I26997ee4aba49a6952dc0312094d2181cbcfa4dd
This commit is contained in:
Sergey Filatov 2016-12-21 16:16:45 +03:00
parent 02c8919b7c
commit 83cfb046c4
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ class { '::murano' :
rabbit_os_user => $rabbit_hash['user'],
rabbit_os_password => $rabbit_hash['password'],
rabbit_os_port => $amqp_port,
rabbit_os_host => split($amqp_hosts, ','),
rabbit_os_host => $amqp_hosts,
rabbit_ha_queues => $rabbit_ha_queues,
rabbit_own_host => $public_ip,
rabbit_own_port => $murano_hash['rabbit']['port'],