From 8d1d4097002c4555f591faab7a6fb9eddaced205 Mon Sep 17 00:00:00 2001 From: Ankit Agrawal Date: Thu, 28 Jan 2016 23:44:16 -0800 Subject: [PATCH] Add release notes for return-request-id-to-caller For more details on how request_id will be returned to the caller, please refer to the approved blueprint [1] discussed with the cross-project team. [1] http://specs.openstack.org/openstack/openstack-specs/specs/return-request-id.html Implements: blueprint return-request-id-to-caller Change-Id: Ic6b557895707f30869219bd5096c4ef7785cf7dc --- .../return-request-id-to-caller-78d27f33f0048405.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 releasenotes/notes/return-request-id-to-caller-78d27f33f0048405.yaml diff --git a/releasenotes/notes/return-request-id-to-caller-78d27f33f0048405.yaml b/releasenotes/notes/return-request-id-to-caller-78d27f33f0048405.yaml new file mode 100644 index 000000000..305281cbc --- /dev/null +++ b/releasenotes/notes/return-request-id-to-caller-78d27f33f0048405.yaml @@ -0,0 +1,10 @@ +--- +features: + - Added support to return "x-openstack-request-id" header in request_ids attribute + for better tracing. + + | For ex. + | >>> from cinderclient import client + | >>> cinder = client.Client('2', $OS_USER_NAME, $OS_PASSWORD, $OS_TENANT_NAME, $OS_AUTH_URL) + | >>> res = cinder.volumes.list() + | >>> res.request_ids \ No newline at end of file