1. The html_last_updated_fmt sphinx setting was providing a byte string where sphinx expected a str, which produced warnings (and therefore failures): WARNING: The config value `html_last_updated_fmt' has type `bytes', expected to ['str']. The solution provided is copied from cinder's solution[1]. 2. The .keys() method in python 3 returns a dict_keys object rather than a list and it does not include a .sort() method. This patch swaps .sort() out for the global function sorted() which works in both python 2 and python 3. This came up because on some newer distros that don't install python 2 by default, virtualenv defaults to creating a python 3 environment when none is specified. [1] https://review.openstack.org/#/c/433081 Change-Id: I68b796fa2e33fd6c3df67b542def31e6ba620944
Team and repository tags
OpenStack Keystone
Keystone provides authentication, authorization and service discovery mechanisms via HTTP primarily for use by projects in the OpenStack family. It is most commonly deployed as an HTTP interface to existing identity systems, such as LDAP.
Developer documentation, the source of which is in
doc/source/
, is published at:
The API specification and documentation are available at:
The canonical client library is available at:
https://git.openstack.org/cgit/openstack/python-keystoneclient
Documentation for cloud administrators is available at:
The source of documentation for cloud administrators is available at:
Information about our team meeting is available at:
Bugs and feature requests are tracked on Launchpad at:
Future design work is tracked at:
https://specs.openstack.org/openstack/keystone-specs/#identity-program-specifications
Contributors are encouraged to join IRC
(#openstack-keystone
on freenode):
For information on contributing to Keystone, see
CONTRIBUTING.rst
.