From 88371c666083e2d02527f45e3e4415b657ab893f Mon Sep 17 00:00:00 2001 From: eric Date: Wed, 17 Sep 2014 08:51:32 -0600 Subject: [PATCH] horizon ignores region for identity service this change will attempt to use a identity service in the selected region when available. before the region for the identity service was always the first found Change-Id: Idc64a32128bcee561cdbba956722adad0ee1eaf2 Closes-Bug: #1339382 --- openstack_dashboard/api/base.py | 36 +++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/openstack_dashboard/api/base.py b/openstack_dashboard/api/base.py index 3be62c447c..2e30d79572 100644 --- a/openstack_dashboard/api/base.py +++ b/openstack_dashboard/api/base.py @@ -235,19 +235,29 @@ ENDPOINT_TYPE_TO_INTERFACE = { def get_url_for_service(service, region, endpoint_type): identity_version = get_version_from_service(service) - for endpoint in service['endpoints']: - # ignore region for identity - if service['type'] == 'identity' or region == endpoint['region']: - try: - if identity_version < 3: - return endpoint[endpoint_type] - else: - interface = \ - ENDPOINT_TYPE_TO_INTERFACE.get(endpoint_type, '') - if endpoint['interface'] == interface: - return endpoint['url'] - except (IndexError, KeyError): - return None + available_endpoints = [endpoint for endpoint in service['endpoints'] + if region == endpoint['region']] + """if we are dealing with the identity service and there is no endpoint + in the current region, it is okay to use the first endpoint for any + identity service endpoints and we can assume that it is global + """ + if service['type'] == 'identity' and not available_endpoints: + available_endpoints = [endpoint for endpoint in service['endpoints']] + + for endpoint in available_endpoints: + try: + if identity_version < 3: + return endpoint[endpoint_type] + else: + interface = \ + ENDPOINT_TYPE_TO_INTERFACE.get(endpoint_type, '') + if endpoint['interface'] == interface: + return endpoint['url'] + except (IndexError, KeyError): + """it could be that the current endpoint just doesn't match the + type, continue trying the next one + """ + pass return None