Merge "Hides prefix_length column in subnet show output"

This commit is contained in:
Zuul 2021-03-20 05:55:41 +00:00 committed by Gerrit Code Review
commit 23e7495d44

View File

@ -141,7 +141,7 @@ def _get_columns(item):
'tenant_id': 'project_id', 'tenant_id': 'project_id',
} }
# Do not show this column when displaying a subnet # Do not show this column when displaying a subnet
invisible_columns = ['use_default_subnet_pool'] invisible_columns = ['use_default_subnet_pool', 'prefix_length']
return sdk_utils.get_osc_show_columns_for_sdk_resource( return sdk_utils.get_osc_show_columns_for_sdk_resource(
item, item,
column_map, column_map,