summaryrefslogtreecommitdiff
path: root/releasenotes/notes
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2016-03-11 14:41:27 -0500
committerDoug Hellmann <doug@doughellmann.com>2016-03-11 14:41:27 -0500
commit52f12f28a27afbb08c60bd0aad7428a0773a3fde (patch)
treec2c81307ed1ec9968b1033e6d23f2d508f938e25 /releasenotes/notes
parent407403d988ba81ac46f681156bdf84d1ac69d1a1 (diff)
downloadpython-cinderclient-52f12f28a27afbb08c60bd0aad7428a0773a3fde.tar.gz
fix formatting of return-request-id-to-caller release note
The release note was not escaping the restructuredtext constructs properly so the YAML parser was wrapping the lines together. Change-Id: I8ae7e70c4e97d4a26de265f9fc48122be75224bb Signed-off-by: Doug Hellmann <doug@doughellmann.com>
Diffstat (limited to 'releasenotes/notes')
-rw-r--r--releasenotes/notes/return-request-id-to-caller-78d27f33f0048405.yaml16
1 files changed, 9 insertions, 7 deletions
diff --git a/releasenotes/notes/return-request-id-to-caller-78d27f33f0048405.yaml b/releasenotes/notes/return-request-id-to-caller-78d27f33f0048405.yaml
index 305281c..f4e3751 100644
--- a/releasenotes/notes/return-request-id-to-caller-78d27f33f0048405.yaml
+++ b/releasenotes/notes/return-request-id-to-caller-78d27f33f0048405.yaml
@@ -1,10 +1,12 @@
---
features:
- - Added support to return "x-openstack-request-id" header in request_ids attribute
- for better tracing.
+ - |
+ 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
+ For example::
+
+ >>> 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