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 201131e1cb)
This commit is contained in:
Takashi Kajinami 2020-08-30 23:49:44 +09:00
parent 7f53aa1e64
commit b04597ed60
1 changed files with 1 additions and 1 deletions

View File

@ -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,