Ocata Series Release Notes¶
2.6.0¶
Prelude¶
Switch to using keystoneauth for session and auth plugins.
New Features¶
Added support to return “x-openstack-request-id” header in request_ids attribute for better tracing. | For ex. | >>> from glanceclient import Client | >>> glance = Client(‘2’, endpoint=’OS_IMAGE_ENDPOINT’, token=’OS_AUTH_TOKEN’) | >>> res = glance.images.get(‘<image_id>’) | >>> res.request_ids
Other Notes¶
[bp use-keystoneauth] As of keystoneclient 2.2.0, the session and auth plugins code has been deprecated. These modules have been moved to the keystoneauth library. Consumers of the session and plugin modules are encouraged to move to keystoneauth. Note that there should be no change to end users of glanceclient.