Merge "Fix share server listing with network subnet id"

This commit is contained in:
Zuul 2022-07-20 23:48:31 +00:00 committed by Gerrit Code Review
commit f88e65c98d
2 changed files with 6 additions and 1 deletions

View File

@ -4434,7 +4434,8 @@ def do_share_server_list(cs, args):
"Share network subnet option is only available with manila "
"API version >= 2.51")
else:
search_opts.update({'share_network_subnet': args.share_network_subnet})
search_opts.update({
'share_network_subnet_id': args.share_network_subnet})
fields.append("Share Network Subnet Id")
if args.columns is not None:

View File

@ -0,0 +1,4 @@
---
fixes:
- Launchpad `bug 1959329 <https://bugs.launchpad.net/python-manilaclient/+bug/1959329>`_
has been fixed for share server listing with network subnet id.