summaryrefslogtreecommitdiff
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 19:44:06 +0000
commit3f7bf054dfc47c7009789e5568b2e3186648c298 (patch)
tree518e1b3df34e9231b184fc46e2777659b11856d5
parent66f7a083851a6b6adebc4e8b1a5736e1191a409d (diff)
downloadpython-cinderclient-3f7bf054dfc47c7009789e5568b2e3186648c298.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>
-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