mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Temporary ignore "is_vlan_qinq" column in the output
We need such temporary workaround until [1] in SDK will be merged, as
without that change here py{39,312}-tips jobs are failing on that SDK
patch.
[1] https://review.opendev.org/c/openstack/openstacksdk/+/939703
Related-bug: #1915151
Change-Id: Id39a6482de54fe78e26fa33c9252253886cf1f3d
This commit is contained in:
parent
0c2dee5e1f
commit
e761ef8e32
1 changed files with 5 additions and 1 deletions
|
|
@ -60,7 +60,11 @@ def _get_columns_network(item):
|
|||
'ipv6_address_scope_id': 'ipv6_address_scope',
|
||||
'tags': 'tags',
|
||||
}
|
||||
hidden_columns = ['location', 'tenant_id']
|
||||
# TODO(slaweq): temporary, until
|
||||
# https://review.opendev.org/c/openstack/openstacksdk/+/939703 will be
|
||||
# merged this new column should be hidden from the output (it is just to
|
||||
# make unit tests in the openstacksdk patch happy)
|
||||
hidden_columns = ['location', 'tenant_id', 'is_vlan_qinq']
|
||||
return utils.get_osc_show_columns_for_sdk_resource(
|
||||
item, column_map, hidden_columns
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue