commit 7098d125e8ca83222ff593a2bf09051eb2ebbde8 Author: Marc Gariepy Date: Thu Oct 1 08:43:03 2020 -0400 Fix boolean in config file. horizon do expect a boolean and not a string. Depends-On: https://review.opendev.org/756244 Change-Id: I247f29f66466fc7b398dee2d132710e59a087354 diff --git a/templates/horizon_local_settings.py.j2 b/templates/horizon_local_settings.py.j2 index edc9c26..31dba57 100644 --- a/templates/horizon_local_settings.py.j2 +++ b/templates/horizon_local_settings.py.j2 @@ -94,7 +94,7 @@ OPENSTACK_KEYSTONE_DOMAIN_CHOICES = {{ horizon_keystone_multidomain_choices }} {% endif %} {% endif %} -SHOW_KEYSTONE_V2_RC = "{{ horizon_show_keystone_v2_rc }}" +SHOW_KEYSTONE_V2_RC = {{ horizon_show_keystone_v2_rc }} # Set Console type: # valid options are "AUTO"(default), "VNC", "SPICE", "RDP", "SERIAL" or None