From 3ae7afa171b23e7c11212d8224a4540f0f94d7a3 Mon Sep 17 00:00:00 2001 From: Sergey Filatov Date: Mon, 26 Dec 2016 12:31:10 +0300 Subject: [PATCH] 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 --- deployment_scripts/manifests/murano.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment_scripts/manifests/murano.pp b/deployment_scripts/manifests/murano.pp index fee0c5a..111c1af 100644 --- a/deployment_scripts/manifests/murano.pp +++ b/deployment_scripts/manifests/murano.pp @@ -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'],