From 83cfb046c43a13e643e11184bb7df7657cef74c8 Mon Sep 17 00:00:00 2001 From: Sergey Filatov Date: Wed, 21 Dec 2016 16:16:45 +0300 Subject: [PATCH] Fixed murano manifest which turned rabbit_hosts string into an array. This set wrong rabbit_hosts setting in murano.conf Change-Id: I26997ee4aba49a6952dc0312094d2181cbcfa4dd --- 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'],