Skip to content

Commit e761ef8

Browse files
committed
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
1 parent 0c2dee5 commit e761ef8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

openstackclient/network/v2/network.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,11 @@ def _get_columns_network(item):
6060
'ipv6_address_scope_id': 'ipv6_address_scope',
6161
'tags': 'tags',
6262
}
63-
hidden_columns = ['location', 'tenant_id']
63+
# TODO(slaweq): temporary, until
64+
# https://review.opendev.org/c/openstack/openstacksdk/+/939703 will be
65+
# merged this new column should be hidden from the output (it is just to
66+
# make unit tests in the openstacksdk patch happy)
67+
hidden_columns = ['location', 'tenant_id', 'is_vlan_qinq']
6468
return utils.get_osc_show_columns_for_sdk_resource(
6569
item, column_map, hidden_columns
6670
)

0 commit comments

Comments
 (0)