From 14e8f334579d2c36d50eadb9a4bec00856adaa9b Mon Sep 17 00:00:00 2001 From: Alfredo Moralejo Date: Fri, 24 Mar 2017 13:30:28 +0100 Subject: [PATCH] Change rabbitmq/host to '::1' in murano.conf Currently it's set to [::1] which is not longer accepted as valid after https://review.openstack.org/#/c/448849/ Change-Id: If51e1884d665481b461f4968985c16b024d539a4 --- manifests/murano.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/murano.pp b/manifests/murano.pp index 7b707335b..60a3bf138 100644 --- a/manifests/murano.pp +++ b/manifests/murano.pp @@ -53,7 +53,7 @@ class openstack_integration::murano { rabbit_own_user => 'murano_private', rabbit_own_password => 'an_even_bigger_secret', rabbit_own_vhost => '/murano', - rabbit_own_host => $::openstack_integration::config::ip_for_url, + rabbit_own_host => $::openstack_integration::config::host, rabbit_own_port => $::openstack_integration::config::rabbit_port, rabbit_own_use_ssl => $::openstack_integration::config::ssl, database_connection => 'mysql://murano:a_big_secret@127.0.0.1/murano?charset=utf8',