Skip to content

Commit f461af0

Browse files
committed
Skip original_name from flavor info
In the new SDK we are going to add additional parameter to the flavor which make no use for OSC. Exclude it explicitly since it also cause failing tests. Change-Id: Ie35e60498cf18f05c878611df6f88607a04b1870
1 parent 0a887a4 commit f461af0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openstackclient/compute/v2/flavor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def _get_flavor_columns(item):
4848
'is_public': 'os-flavor-access:is_public'
4949

5050
}
51-
hidden_columns = ['links', 'location']
51+
hidden_columns = ['links', 'location', 'original_name']
5252
return utils.get_osc_show_columns_for_sdk_resource(
5353
item, column_map, hidden_columns)
5454

0 commit comments

Comments
 (0)