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:
Slawek Kaplonski 2025-02-12 16:35:36 +01:00
parent 0c2dee5e1f
commit e761ef8e32

View File

@ -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
)