Do not split hosts for rabbit_os_hosts in murano.pp

Fixed murano manifest which turned rabbit_hosts string into an array.
This set wrong rabbit_hosts setting in murano.conf

Closes-Bug: #1651748
Change-Id: I2b0b8650b588913d52881ddc374ea5e7abb32aff
This commit is contained in:
Sergey Filatov 2016-12-26 12:31:10 +03:00 committed by Kirill Zaitsev
parent 02c8919b7c
commit 3ae7afa171
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'],