oslo.utils/releasenotes/notes/bug-1942682-ea95d54b2587b32f.yaml
Takashi Kajinami 2922a3491a QemuImgInfo: Fix inconsistent value format of encrypted
The qemu-img info command shows the encrpyed field in different formats
according to the output format. When the default human format is used
the field can be 'yes' or None while when json format is used the same
field can be True or False.
This change ensures the corresponding attribute has the consistent
format regardless of the output format used.

Closes-Bug: #1942682
Change-Id: I949f07582a708114fdfba76f1a05aa3a3e5c4f40
2021-09-05 00:43:48 +09:00

7 lines
246 B
YAML

---
fixes:
- |
`bug #1942682 <https://bugs.launchpad.net/oslo.utils/+bug/1942682>`_:
Fix inconsistent value of `QemuImgInfo.encrypted`. Now the attribute is
always `'yes'` or `None` regardless of the format(`human` or `json`) used.