diff options
| author | Artem Goncharov <Artem.goncharov@gmail.com> | 2022-01-14 17:37:59 +0100 |
|---|---|---|
| committer | Artem Goncharov <Artem.goncharov@gmail.com> | 2022-01-14 17:37:59 +0100 |
| commit | f461af0ac801f80668176afc68d2b13b6f6a8bbc (patch) | |
| tree | b99bd5048268d7c6dfab9838e98d00c1fe70309c | |
| parent | 0a887a4786eef67bb88d191c66217f82cf7b8127 (diff) | |
| download | python-openstackclient-f461af0ac801f80668176afc68d2b13b6f6a8bbc.tar.gz | |
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
| -rw-r--r-- | openstackclient/compute/v2/flavor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/compute/v2/flavor.py b/openstackclient/compute/v2/flavor.py index a55aba2a..8a9eb07a 100644 --- a/openstackclient/compute/v2/flavor.py +++ b/openstackclient/compute/v2/flavor.py @@ -48,7 +48,7 @@ def _get_flavor_columns(item): 'is_public': 'os-flavor-access:is_public' } - hidden_columns = ['links', 'location'] + hidden_columns = ['links', 'location', 'original_name'] return utils.get_osc_show_columns_for_sdk_resource( item, column_map, hidden_columns) |
