From 1f64071f5a17dd3d66033edd5c3786d67459c293 Mon Sep 17 00:00:00 2001 From: Javier Pena Date: Wed, 11 Dec 2019 13:15:58 +0100 Subject: [PATCH] Ensure the Aodh DB is synced We were lacking the "sync_db => true" parameter when calling aodh::api, so the database was not initialized, and API calls were failing. Change-Id: Idbc4f5a3310c0776ba4973b45dbaf554d8372b8e Closes-Bug: #1855443 --- packstack/puppet/modules/packstack/manifests/aodh.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/packstack/puppet/modules/packstack/manifests/aodh.pp b/packstack/puppet/modules/packstack/manifests/aodh.pp index 97f691649..6fa2858b5 100644 --- a/packstack/puppet/modules/packstack/manifests/aodh.pp +++ b/packstack/puppet/modules/packstack/manifests/aodh.pp @@ -20,6 +20,7 @@ class packstack::aodh () class { '::aodh::api': enabled => true, service_name => 'httpd', + sync_db => true, } class { '::aodh::wsgi::apache':