mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Fix output for subnet show
The use_default_subnet_pool column is never returned by the API, it is only being used in the request to create a subnet. So make sure that we do not show it when displaying a subnet. Change-Id: Ie021149cceb8f89b779ad0f3c13ac60420509671 Related-Bug: 1668223
This commit is contained in:
parent
50099d3c72
commit
104d6d0e31
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ def _get_columns(item):
|
|||
'tenant_id': 'project_id',
|
||||
}
|
||||
# Do not show this column when displaying a subnet
|
||||
invisible_columns = ['use_default_subnetpool']
|
||||
invisible_columns = ['use_default_subnet_pool']
|
||||
return sdk_utils.get_osc_show_columns_for_sdk_resource(
|
||||
item,
|
||||
column_map,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue