bug fix volume group show command.

There is no "show" function in the "group" class of python-cinderclient. Instead, there is a "get" function, so I fixed it.
0125495f92/cinderclient/v3/groups.py (L134)

Closes-Bug: #2111539
Change-Id: If61d8cf115c9ff04d172d7344565e693774e7a21
This commit is contained in:
hongp
2025-05-23 09:47:18 +09:00
parent 88b59d8975
commit 1c70e264a4

@ -552,7 +552,7 @@ class ShowVolumeGroup(command.ShowOne):
parsed_args.group,
)
group = volume_client.groups.show(group.id, **kwargs)
group = volume_client.groups.get(group.id, **kwargs)
if parsed_args.show_replication_targets:
replication_targets = (