update WSGI multidomain values

When activating multidomain support, the following error was observed:
ValueError: not enough values to unpack (expected 2, got 1)

This change allows for the WSGI file to correctly read the boolean
dropdown and list of tuples in domain choices.

Change-Id: I195ac2089baf3ba76c2201cc8b7e6abef1be4b54
This commit is contained in:
Andre 2020-05-08 14:54:41 +01:00
parent 9678045a70
commit e2ef8afb99
1 changed files with 2 additions and 2 deletions

View File

@ -89,8 +89,8 @@ OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT = {{ horizon_keystone_multidomain_support
# with Keystone V3. All entities will be created in the default domain.
OPENSTACK_KEYSTONE_DEFAULT_DOMAIN = "{{ horizon_keystone_default_domain }}"
{% else %}
OPENSTACK_KEYSTONE_DOMAIN_DROPDOWN = "{{ horizon_keystone_multidomain_dropdown | bool }}"
OPENSTACK_KEYSTONE_DOMAIN_CHOICES = "{{ horizon_keystone_multidomain_choices }}"
OPENSTACK_KEYSTONE_DOMAIN_DROPDOWN = {{ horizon_keystone_multidomain_dropdown | bool }}
OPENSTACK_KEYSTONE_DOMAIN_CHOICES = {{ horizon_keystone_multidomain_choices }}
{% endif %}
{% endif %}