From b04597ed60d6261988601dfbfb3239dbcd8cf5a9 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sun, 30 Aug 2020 23:49:44 +0900 Subject: [PATCH] Fix the default value of mistral::database_connection The default of mistral::database_connection should be undef instead of $os_service_default, otherwise mistral::db::database_connection, doesn't work at all. This patch fixes the default value so that it has the corret one described in parameter description. Change-Id: Ie4fea38fb96d1c04a8a589f2f216a167fd15b827 (cherry picked from commit 201131e1cbd00c7576b74f0a512ddc8949cf21d6) --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index 240a733..356e3fd 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -166,7 +166,7 @@ # class mistral( $package_ensure = 'present', - $database_connection = $::os_service_default, + $database_connection = undef, $os_actions_endpoint_type = $::os_service_default, $control_exchange = $::os_service_default, $rpc_response_timeout = $::os_service_default,