keystone/releasenotes/notes/bug-1017606-98313bb4c1edf250.yaml
Steve Martinelli 5e2cc88ce7 clean up release notes for ocata
Change-Id: I9f4d47518f1a1ab184d6cefb2b251aaad38e113a
2017-01-27 14:36:54 +00:00

20 lines
626 B
YAML

---
other:
- >
[`bug 1017606 <https://bugs.launchpad.net/keystone/+bug/1017606>`_]
The signature on the ``get_catalog`` and ``get_v3_catalog`` methods of
``keystone.catalog.backends.base.CatalogDriverBase`` have been updated.
Third-party extensions that extend the abstract class (``CatalogDriverBase``)
should be updated according to the new parameter names.
The method signatures have changed from::
get_catalog(self, user_id, tenant_id)
get_v3_catalog(self, user_id, tenant_id)
to::
get_catalog(self, user_id, project_id)
get_v3_catalog(self, user_id, project_id)