mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-16 23:13:05 +00:00
Fixes incorrect json output for 'openstack server show -f json'.
The security group json output groups all the json as one
for e.g. "security_groups": "name='group1'\nname='group2'"
The correct output should be
"security_groups" : [{"name" : "group1"}, {"name" : "group2"}]
properties and volumes_attached fields also has similar issue.
Story: 2007755
Change-Id: I1b1cac716329e0530400aff782c08000b21d8e1d
|
||
|---|---|---|
| .. | ||
| __init__.py | ||
| common.py | ||
| test_agent.py | ||
| test_aggregate.py | ||
| test_flavor.py | ||
| test_keypair.py | ||
| test_server.py | ||
| test_server_event.py | ||
| test_server_group.py | ||