From b9ddda15f49d4ef43fb29706c6b166125aefcb4a Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 31 Aug 2023 22:09:40 +0900 Subject: [PATCH] Fix wrong default value of use_simple_tenant_usage The actual option in horizon was set to True by default before [1] was merged. This restores the old default value. [1] 54a31c91fdd3ae24fc9370ecf9cbcee8b42e51fc Change-Id: Iaa64ba9d475b0dbfcbd53af8b777ef94cae85c0b --- manifests/init.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index fba40814..5db81b7c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -235,7 +235,7 @@ # # [*use_simple_tenant_usage*] # (optional) Use SimpleTenantUsage nova API in the usage overview. -# (Defaults to undef) +# Defaults to true. # # [*configure_apache*] # (optional) Configure Apache for Horizon. (Defaults to true) @@ -615,7 +615,7 @@ class horizon( Hash $keystone_options = {}, Hash $neutron_options = {}, Hash $instance_options = {}, - Boolean $use_simple_tenant_usage = false, + Boolean $use_simple_tenant_usage = true, Stdlib::Absolutepath $file_upload_temp_dir = '/tmp', Optional[Stdlib::Absolutepath] $policy_files_path = undef, Optional[Hash[String, String]] $policy_files = undef,